From ad7ebd1756956724e0b167d88f924e707401a9aa Mon Sep 17 00:00:00 2001 From: polwex Date: Thu, 18 Sep 2025 03:48:14 +0700 Subject: fuck yeah --- front/src/pages/Settings.tsx | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) (limited to 'front/src/pages/Settings.tsx') diff --git a/front/src/pages/Settings.tsx b/front/src/pages/Settings.tsx index 6b6f7bd..cd9eec7 100644 --- a/front/src/pages/Settings.tsx +++ b/front/src/pages/Settings.tsx @@ -6,10 +6,11 @@ import Icon from "@/components/Icon"; import "@/styles/Settings.css"; function Settings() { - const { key, relays, api } = useLocalState((s) => ({ + const { key, relays, api, addNotification } = useLocalState((s) => ({ key: s.key, relays: s.relays, api: s.api, + addNotification: s.addNotification, })); const [newRelay, setNewRelay] = useState(""); const [isAddingRelay, setIsAddingRelay] = useState(false); @@ -78,6 +79,41 @@ function Settings() {
+ {/* Notifications Test Section - Remove in production */} +
+
+ +

Test Notifications

+
+
+
+
+ +

Generate test notifications to see how they work

+
+
+ +
+
+
+
+ {/* Appearance Section */}
-- cgit v1.2.3