From 897b4d65738d697a0838e55adc28801b53a88811 Mon Sep 17 00:00:00 2001 From: Danish Arora Date: Mon, 26 May 2025 15:52:14 +0530 Subject: [PATCH] chore: update text --- src/components/RLNStatusIndicator.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/RLNStatusIndicator.tsx b/src/components/RLNStatusIndicator.tsx index 8afcfa0..b656526 100644 --- a/src/components/RLNStatusIndicator.tsx +++ b/src/components/RLNStatusIndicator.tsx @@ -36,7 +36,7 @@ export function RLNStatusIndicator() { const getStatusText = () => { if (error) return 'Error'; if (isLoading) return 'Initializing RLN...'; - if (!isConnected) return 'Connect Wallet'; + if (!isConnected) return 'Wallet Not Connected'; if (chainId !== 59141) return 'Switch to Linea Sepolia'; if (isInitialized && isStarted) return 'RLN Active'; return 'RLN Inactive';