diff options
author | crupest <crupest@outlook.com> | 2020-11-16 16:04:26 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-11-16 16:04:26 +0800 |
commit | e0785b385138057a23ffd1703a7265c371aef45d (patch) | |
tree | a5b2ec49e877713369fd93948f2cf4b493bf7bb4 /FrontEnd/src | |
parent | a57fa846f70514662f807462eeea66bc504540f9 (diff) | |
download | timeline-e0785b385138057a23ffd1703a7265c371aef45d.tar.gz timeline-e0785b385138057a23ffd1703a7265c371aef45d.tar.bz2 timeline-e0785b385138057a23ffd1703a7265c371aef45d.zip |
fix: Fix 404 page double nav bug.
Diffstat (limited to 'FrontEnd/src')
-rw-r--r-- | FrontEnd/src/app/App.tsx | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/FrontEnd/src/app/App.tsx b/FrontEnd/src/app/App.tsx index 4e53d4da..01b1883b 100644 --- a/FrontEnd/src/app/App.tsx +++ b/FrontEnd/src/app/App.tsx @@ -15,13 +15,7 @@ import { dataStorage } from "./services/common"; import { userService, useRawUser } from "./services/user"; const NoMatch: React.FC = () => { - return ( - <> - <AppBar /> - <div style={{ height: 56 }} /> - <div>Ah-oh, 404!</div> - </> - ); + return <div>Ah-oh, 404!</div>; }; const LazyAdmin = React.lazy( |