Skip to content

Commit

Permalink
Added self closing tag for wrapper app
Browse files Browse the repository at this point in the history
  • Loading branch information
Derstilon committed Nov 3, 2021
1 parent e3bd0ad commit dbe4615
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function App() {
<ThemeProvider theme={theme}>
<JsRootService>
<Store>
<WrapperApp></WrapperApp>
<WrapperApp/>
</Store>
</JsRootService>
</ThemeProvider>
Expand Down
2 changes: 1 addition & 1 deletion src/WrapperApp/WrapperApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function WrapperApp() {
<Tab sx={{ marginLeft: 'auto' }} label={currentUser ? "Logout" : "Login"} />
</Tabs>
</Box>
<TabPanel value={tabsValue} index={0} persistent={true} >
<TabPanel value={tabsValue} index={0} persistent >
<ThreeEditor onEditorInitialized={(editor) => editorRef.current = editor} />
</TabPanel>
{DEMO_MODE ||
Expand Down

0 comments on commit dbe4615

Please sign in to comment.