From 9a353b6494cfc15378b56f82e9994d7f7d83504b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20G=C3=B3mez?= Date: Sat, 13 Dec 2025 16:08:46 +0100 Subject: [PATCH] ux: tone down notification duration --- src/components/GlobalAuthPrompt.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/GlobalAuthPrompt.tsx b/src/components/GlobalAuthPrompt.tsx index 9092311..73fcbd1 100644 --- a/src/components/GlobalAuthPrompt.tsx +++ b/src/components/GlobalAuthPrompt.tsx @@ -127,7 +127,8 @@ export function GlobalAuthPrompt() { const relayState = relays[relayUrl]; if (relayState && relayState.authStatus === "authenticated") { toast.success(`Authenticated with ${relayUrl}`, { - duration: 3000, + duration: 1000, + closeButton: true, }); setAuthenticatingRelays((prev) => { const next = new Set(prev);