From e6a2bdc65f0cfce5f60e7850d64e32af108de34b Mon Sep 17 00:00:00 2001 From: Chad Curtis Date: Sat, 28 Mar 2026 07:35:51 -0500 Subject: [PATCH] Clean up nsec paste guard toast wording for clarity --- src/hooks/useNsecPasteGuard.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hooks/useNsecPasteGuard.ts b/src/hooks/useNsecPasteGuard.ts index 73074f94..4b3a1eb5 100644 --- a/src/hooks/useNsecPasteGuard.ts +++ b/src/hooks/useNsecPasteGuard.ts @@ -17,9 +17,9 @@ export function useNsecPasteGuard() { e.stopImmediatePropagation(); toast({ - title: "Private key detected", + title: "Secret key detected", description: - "You just tried to paste an nsec (private key). This should never be shared publicly — it gives full control of your account.", + "Your clipboard contains a secret key. Posting it publicly could give someone else full access to your account.", variant: "destructive", }); }