From ab32ad578cd8b8ff7736235c29e3127976637494 Mon Sep 17 00:00:00 2001 From: plebeius Date: Sat, 28 Feb 2026 20:10:41 +0800 Subject: [PATCH] fix(challenge-utils): use console.log for success instead of console.warn --- src/lib/utils/challenge-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utils/challenge-utils.ts b/src/lib/utils/challenge-utils.ts index 0a1df182..36b15846 100644 --- a/src/lib/utils/challenge-utils.ts +++ b/src/lib/utils/challenge-utils.ts @@ -38,7 +38,7 @@ export const alertChallengeVerificationFailed = (challengeVerification: Challeng alert(`Error from ${resolveBoardIdentifier(publication?.subplebbitAddress)}: ${finalMessage || 'unknown error'}`); } else { - console.warn('Challenge verification succeeded but no action taken:', challengeVerification); + console.log('Challenge verification succeeded:', challengeVerification); } };