Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Commit

Permalink
Remove numeric separators to fix react native build (#1309)
Browse files Browse the repository at this point in the history
  • Loading branch information
sliptype committed May 11, 2022
1 parent 6a0a7c5 commit 33514d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mobile/src/screens/audio-screen/AudioScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -359,15 +359,15 @@ export const AudioScreen = () => {
tierNumber={3}
title='gold'
colors={['rgb(236, 173, 11)', 'rgb(236, 173, 11)']}
minAmount={10_000}
minAmount={10000}
image={<Image source={Gold} />}
isCurrentTier={tierNumber === 2}
/>
<Tier
tierNumber={4}
title='platinum'
colors={['rgb(179, 236, 249)', 'rgb(87, 194, 215)']}
minAmount={100_000}
minAmount={100000}
image={<Image source={Platinum} />}
isCurrentTier={tierNumber === 3}
/>
Expand Down

0 comments on commit 33514d4

Please sign in to comment.