We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44adb2d commit b00d5d4Copy full SHA for b00d5d4
package.json
@@ -235,4 +235,4 @@
235
"pre-push": "yarn test-all"
236
}
237
238
-}
+}
src/components/shared/IonGraphView.tsx
@@ -25,5 +25,7 @@ export function IonGraphView(props: IonGraphViewProps) {
25
if (!ionJSON?.functions[0]) {
26
return <div />;
27
28
- return <GraphViewer func={ionJSON.functions[0]} sampleCounts={props.timings} />;
+ return (
29
+ <GraphViewer func={ionJSON.functions[0]} sampleCounts={props.timings} />
30
+ );
31
0 commit comments