import { turnOffNotificationsAtom } from "@/atoms/userSettingsAtom"; import { useAtom } from "jotai"; const TurnOffNotificationsToggle = () => { const [turnOffNotifications, setTurnOffNotifications] = useAtom( turnOffNotificationsAtom ); return (

TURN OFF NOTIFICATIONS

If enabled, Upscayl will not send any system notifications on success or failure.

{ setTurnOffNotifications(!turnOffNotifications); }} />
); }; export default TurnOffNotificationsToggle;