Skip to content

Commit

Permalink
fix: correct prettify finds
Browse files Browse the repository at this point in the history
  • Loading branch information
rozanagy committed Oct 22, 2024
1 parent c878452 commit d86c17e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/shared/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ export function formatEvent(event: DetailedEvent): FormattedEvent {
dlcBTCAmount: isMint ? event.value : -event.value,
merchant: isMint ? event.to : event.from,
txHash: event.txHash,
date: date.toLocaleDateString('en-US', { month: 'short', day: 'numeric', year: 'numeric' }).replace(',', ''),
date: date
.toLocaleDateString('en-US', { month: 'short', day: 'numeric', year: 'numeric' })
.replace(',', ''),
isMint,
chain: event.chain,
isCCIP: event.isCCIP,
Expand Down

0 comments on commit d86c17e

Please sign in to comment.