Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
enddynayn committed Nov 1, 2024
1 parent 75c3884 commit a290066
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ChainStatus.svelte
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<script lang="ts">
import { storeChainInfo } from '$lib/stores';
$: chainStatus = [
let chainStatus = $derived([
{ label: 'Current Block', value: $storeChainInfo.blockNumber, id: 'block-number' },
{ label: 'Epoch', value: $storeChainInfo.epochNumber, id: 'epoch-number' },
{ label: 'Token', value: $storeChainInfo.token, id: 'token' },
];
]);
</script>

<div id="chain-status" class="content-block">
Expand Down

0 comments on commit a290066

Please sign in to comment.