Skip to content

Commit

Permalink
Fix stray lint error (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgewecke committed May 22, 2024
1 parent 63c172a commit 3200cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function markdownItalic(val: string) {
}

export function renderWithGasDelta(val: string, delta: number, withColor?: boolean) {
if (delta == 0) return val;
if (delta === 0) return val;

let deltaString = commify(delta);
if (withColor) {
Expand Down

0 comments on commit 3200cbe

Please sign in to comment.