fix: remove alert messages from event verification

in CreateProfileForm
This commit is contained in:
2025-04-20 22:02:11 +02:00
parent ae2859fb71
commit cd9dd6625d

View File

@@ -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);