Skip to content

Commit

Permalink
zero default
Browse files Browse the repository at this point in the history
  • Loading branch information
shadrach-tayo committed Oct 21, 2024
1 parent a789132 commit fe7ce62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/molecules/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -353,15 +353,15 @@ function Analytics() {
<MetricCard
header="Uploaded Data"
value={`${byteValueNumberFormatter.format(
analytics.bytesInLast7Days
analytics.bytesInLast7Days ?? 0
)}`}
description="Last 7 days"
icon="data"
/>
<MetricCard
header="Uploaded Data"
value={`${byteValueNumberFormatter.format(
analytics.bytesInLast30Days
analytics.bytesInLast30Days ?? 0
)}`}
description="Last 30 days"
icon="data"
Expand Down

0 comments on commit fe7ce62

Please sign in to comment.