Skip to content

Commit

Permalink
fix(app): fix text connect btn
Browse files Browse the repository at this point in the history
  • Loading branch information
Swepool committed Jun 9, 2024
1 parent 90d7b96 commit 4b2dad2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/src/lib/components/connect/connect.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ import { cosmosStore, cosmosWalletsInformation } from "$lib/wallet/cosmos/index.
/**
* TODO: check both chains
*/
$: buttonText = $sepoliaStore.connectionStatus === "connected" ? "Connected" : "Connect Wallet"
$: buttonText =
$sepoliaStore.connectionStatus === "connected" || $cosmosStore.connectionStatus === "connected"
? "Connected"
: "Connect Wallet"
let sheetOpen = false
$: if ($navigating) sheetOpen = false
Expand Down

0 comments on commit 4b2dad2

Please sign in to comment.