Skip to content

Commit

Permalink
fix: redundant undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
0xkenj1 authored Aug 20, 2024
1 parent 7681a97 commit e805aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/src/metrics/metrics.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class MetricsController {
gasPrice: gasInfo.gasPrice.toString(),
erc20Transfer: gasInfo.erc20Transfer.toString(),
ethTransfer: gasInfo.ethTransfer.toString(),
ethPrice: gasInfo.ethPrice?.toString() || undefined,
ethPrice: gasInfo.ethPrice?.toString(),
},
zkChains,
});
Expand Down

0 comments on commit e805aa0

Please sign in to comment.