Skip to content

Commit b00d5d4

Browse files
committed
Fix lints
1 parent 44adb2d commit b00d5d4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,4 +235,4 @@
235235
"pre-push": "yarn test-all"
236236
}
237237
}
238-
}
238+
}

src/components/shared/IonGraphView.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,7 @@ export function IonGraphView(props: IonGraphViewProps) {
2525
if (!ionJSON?.functions[0]) {
2626
return <div />;
2727
}
28-
return <GraphViewer func={ionJSON.functions[0]} sampleCounts={props.timings} />;
28+
return (
29+
<GraphViewer func={ionJSON.functions[0]} sampleCounts={props.timings} />
30+
);
2931
}

0 commit comments

Comments
 (0)