Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
donnyquixotic committed Jun 19, 2023
1 parent ca7bdf0 commit e966168
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/utils/string-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ export function assetToAmount(asset: string): number {
}

export function formatNumberWithCommas(num: number): string {
return new Intl.NumberFormat('en-US', {
minimumFractionDigits: 0,
maximumFractionDigits: 20,
}).format(num);
return new Intl.NumberFormat('en-US', {
minimumFractionDigits: 0,
maximumFractionDigits: 20,
}).format(num);
}

export function formatDate(date: string, showTime = true): string {
Expand Down

0 comments on commit e966168

Please sign in to comment.