1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-20 00:08:02 +01:00

Revert "Removed toLocaleString from NEtworkTrafficUsagePlanSummary"

This reverts commit 7bbc871e21.
This commit is contained in:
Gastón Fournier 2024-09-02 17:14:24 +02:00
parent 9bc0af865c
commit 0e382ad817
No known key found for this signature in database
GPG Key ID: AF45428626E17A8E

View File

@ -89,7 +89,7 @@ export const NetworkTrafficUsagePlanSummary = ({
: 'neutral' : 'neutral'
} }
> >
{usageTotal} requests {usageTotal.toLocaleString()} requests
</Badge> </Badge>
</StyledNumbersDiv> </StyledNumbersDiv>
</RowContainer> </RowContainer>
@ -101,7 +101,8 @@ export const NetworkTrafficUsagePlanSummary = ({
<RowContainer> <RowContainer>
Included in your plan monthly Included in your plan monthly
<StyledNumbersDiv> <StyledNumbersDiv>
{includedTraffic} requests {includedTraffic.toLocaleString()}{' '}
requests
</StyledNumbersDiv> </StyledNumbersDiv>
</RowContainer> </RowContainer>
</StyledCardDescription> </StyledCardDescription>
@ -129,7 +130,7 @@ export const NetworkTrafficUsagePlanSummary = ({
</Link> </Link>
) )
<StyledNumbersDiv> <StyledNumbersDiv>
{overages} requests {overages.toLocaleString()} requests
</StyledNumbersDiv> </StyledNumbersDiv>
</RowContainer> </RowContainer>
<RowContainer> <RowContainer>