From cd9dd6625d73f0ca8103eb6b45ce2dcf7ae39897 Mon Sep 17 00:00:00 2001 From: highperfocused Date: Sun, 20 Apr 2025 22:02:11 +0200 Subject: [PATCH] fix: remove alert messages from event verification in CreateProfileForm --- components/CreateProfileForm.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/CreateProfileForm.tsx b/components/CreateProfileForm.tsx index 62cd85b..d6ae023 100644 --- a/components/CreateProfileForm.tsx +++ b/components/CreateProfileForm.tsx @@ -172,9 +172,6 @@ export function CreateProfileForm() { // Verify the event const isGood = verifyEvent(signedEvent); - alert(`Event verification: ${isGood ? 'Success' : 'Failed'}`); - alert(JSON.stringify(signedEvent, null, 2)); - if (isGood) { // Publish to relays publish(signedEvent);