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 77e325b commit afc95b5Copy full SHA for afc95b5
src/components/stage-wrapper/stage-wrapper.jsx
@@ -31,12 +31,16 @@ const StageWrapperComponent = function (props) {
31
)}
32
dir={isRtl ? 'rtl' : 'ltr'}
33
>
34
- <Box className={styles.stageMenuWrapper}>
35
- <StageHeader
36
- stageSize={stageSize}
37
- vm={vm}
38
- />
39
- </Box>
+ {new URLSearchParams(location.search).has('stage-only')
+ ? null
+ : (
+ <Box className={styles.stageMenuWrapper}>
+ <StageHeader
+ stageSize={stageSize}
40
+ vm={vm}
41
+ />
42
+ </Box>
43
+ )}
44
<Box className={styles.stageCanvasWrapper}>
45
{
46
isRendererSupported ?
0 commit comments