mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
fix: add LoadSuspense around verification page
This commit is contained in:
parent
9807ef9c9a
commit
3fbf315587
1 changed files with 3 additions and 1 deletions
|
@ -27,7 +27,9 @@ export function App() {
|
||||||
<Masks />
|
<Masks />
|
||||||
<Switch>
|
<Switch>
|
||||||
<Route path="/login/verify/:token">
|
<Route path="/login/verify/:token">
|
||||||
<Login />
|
<LoadSuspense>
|
||||||
|
<Login />
|
||||||
|
</LoadSuspense>
|
||||||
</Route>
|
</Route>
|
||||||
<Route path="/login/reset/:token">
|
<Route path="/login/reset/:token">
|
||||||
<LoadSuspense>
|
<LoadSuspense>
|
||||||
|
|
Loading…
Reference in a new issue