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 0b8e2aa commit 5701076Copy full SHA for 5701076
pages/06-visual-tests/in-iframe.page.tsx
@@ -10,11 +10,11 @@ import { IframeWrapper } from "../utils/iframe-wrapper";
10
11
export default function () {
12
return (
13
- <IframeWrapper
14
- AppComponent={() => {
15
- const { chartProps } = useChartSettings();
16
- return (
17
- <Page title="Chart inside iframe visual regression page">
+ <Page title="Chart inside iframe visual regression page">
+ <IframeWrapper
+ AppComponent={() => {
+ const { chartProps } = useChartSettings();
+ return (
18
<CoreChart
19
{...omit(chartProps.pie, "ref")}
20
ariaLabel="Pie chart"
@@ -40,9 +40,9 @@ export default function () {
40
}, 0);
41
}}
42
/>
43
- </Page>
44
- );
45
- }}
46
- />
+ );
+ }}
+ />
+ </Page>
47
);
48
}
0 commit comments