Skip to content

Commit

Permalink
Fix: Remove main tag (#680)
Browse files Browse the repository at this point in the history
Remove main tag
  • Loading branch information
ElinorW committed Sep 1, 2020
2 parents 569bf53 + fffa620 commit 5e634dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/views/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ class App extends Component<IAppProps, IAppState> {
return (
// @ts-ignore
<ThemeContext.Provider value={this.props.appTheme}>
<main className={`container-fluid ${classes.app}`}>
<div className={`container-fluid ${classes.app}`}>
<div className='row'>
{graphExplorerMode === Mode.Complete && (
<div className={sidebarWidth}>
Expand Down Expand Up @@ -373,7 +373,7 @@ class App extends Component<IAppProps, IAppState> {
</>}
</div>
</div>
</main>
</div>
</ThemeContext.Provider>
);
}
Expand Down

0 comments on commit 5e634dd

Please sign in to comment.