Skip to content

Commit 09a84c0

Browse files
author
Gene Hynson
authored
fix: typo in billing stats while loading (#3352)
1 parent d38d2c9 commit 09a84c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/usage/BillingStatsPanel.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ const BillingStatsPanel: FC = () => {
4141
data-testid="usage-billing--title"
4242
>
4343
<h4 className="usage--billing-date-range">
44-
{`Billing Stats For ${billingDate} to Today`}
44+
{billingDate
45+
? `Billing Stats For ${billingDate} to Today`
46+
: 'Billing Stats'}
4547
</h4>
4648
</ReflessPopover>
4749
<QuestionMarkTooltip

0 commit comments

Comments
 (0)