From 4082b0591bd14f41d174d8a86795105bf8d3804d Mon Sep 17 00:00:00 2001 From: Danish Arora Date: Mon, 15 Sep 2025 14:03:31 +0530 Subject: [PATCH] fix: allowing forum actions for non-ENS --- src/lib/forum/ForumActions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/forum/ForumActions.ts b/src/lib/forum/ForumActions.ts index 978f069..3272d4f 100644 --- a/src/lib/forum/ForumActions.ts +++ b/src/lib/forum/ForumActions.ts @@ -55,7 +55,7 @@ export class ForumActions { case 'createPost': case 'createComment': case 'vote': - if (verificationStatus === EVerificationStatus.WALLET_UNCONNECTED) { + if (!_isAuthenticated || !currentUser) { return { valid: false, error: 'Connect your wallet to perform this action',