Skip to content

Commit

Permalink
feat: default index is all (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrX-SNX authored Jul 12, 2024
1 parent 6dddce0 commit 0fd6be2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ultrasound/ui/components/SupplyChangeStats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { useState } from 'react';
export function SupplyChangeStats() {
const { data: events, isLoading } = useBurnEvents();
const [selectedTime, setSelectedTime] = useState<'totalBurned' | 'supplyChange7Days'>(
'supplyChange7Days'
'totalBurned'
);

return (
Expand All @@ -32,7 +32,7 @@ export function SupplyChangeStats() {
<Text fontSize="18px" fontWeight={700}>
Supply Change
</Text>
<Tabs variant="soft-rounded" size="sm">
<Tabs variant="soft-rounded" size="sm" defaultIndex={1}>
<TabList>
<Tab
color="gray.500"
Expand Down

0 comments on commit 0fd6be2

Please sign in to comment.