diff --git a/common/util/format.ts b/common/util/format.ts index e4ac0bd7..765c34d9 100644 --- a/common/util/format.ts +++ b/common/util/format.ts @@ -10,7 +10,7 @@ const formatter = new Intl.NumberFormat('en-US', { export function formatMoney(amount: number) { const newAmount = Math.round(amount) === 0 ? 0 : Math.floor(amount) // handle -0 case return ( - ENV_CONFIG.moneyMoniker + ' ' + formatter.format(newAmount).replace('$', '') + ENV_CONFIG.moneyMoniker + formatter.format(newAmount).replace('$', '') ) } diff --git a/web/components/feed-create.tsx b/web/components/feed-create.tsx index 0a0c6902..ac3fd562 100644 --- a/web/components/feed-create.tsx +++ b/web/components/feed-create.tsx @@ -37,7 +37,7 @@ export function FeedPromo(props: { hotContracts: Contract[] }) {