Skip to content

Commit

Permalink
chore: add note on data refresh in billing
Browse files Browse the repository at this point in the history
  • Loading branch information
makeavish committed Sep 12, 2024
1 parent 381a4de commit 9c08e57
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion frontend/src/container/BillingContainer/BillingContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,19 @@ export default function BillingContainer(): JSX.Element {
const BillingUsageGraphCallback = useCallback(
() =>
!isLoading && !isFetchingBillingData ? (
<BillingUsageGraph data={apiResponse} billAmount={billAmount} />
<>
<BillingUsageGraph data={apiResponse} billAmount={billAmount} />
<div
style={{
textAlign: 'left',
fontSize: '13px',
color: '#dcdcdc',
marginTop: '16px',
}}
>
Note: Billing metrics are updated once every 24 hours.
</div>
</>
) : (
<Card className="empty-graph-card" bordered={false}>
<Spinner size="large" tip="Loading..." height="35vh" />
Expand Down

0 comments on commit 9c08e57

Please sign in to comment.