Skip to content

Commit 0789b81

Browse files
committed
Fix design issue
1 parent 60f32f0 commit 0789b81

File tree

1 file changed

+4
-4
lines changed
  • resources/scripts/components

1 file changed

+4
-4
lines changed

resources/scripts/components/App.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ const App = () => {
3939
return (
4040
<StoreProvider store={store}>
4141
<Router basename={'/'}>
42-
<TransitionRouter basename={'/'}>
43-
<div className={'mx-auto w-auto'} style={{ maxWidth: '1000px' }}>
42+
<div className={'mx-auto w-auto'} style={{ maxWidth: '1000px' }}>
43+
<TransitionRouter basename={'/'}>
4444
<Route exact path="/" component={ServerOverviewContainer}/>
4545
<Route path="/auth" component={AuthenticationRouter}/>
4646
<Route path="/account" component={AccountRouter}/>
47-
</div>
48-
</TransitionRouter>
47+
</TransitionRouter>
48+
</div>
4949
</Router>
5050
</StoreProvider>
5151
);

0 commit comments

Comments
 (0)