some fixes

This commit is contained in:
kandrusyak
2022-12-06 16:16:12 +03:00
parent 8bf83aaa5b
commit 78f48b240b
12 changed files with 238 additions and 73 deletions

View File

@@ -19,6 +19,7 @@ import { observer } from 'mobx-react-lite';
import Delegates from './pages/services/Delegates';
import VPNServers from './pages/services/VPNServers';
import VPNPrepare from './pages/services/VPNPrepare';
import { NotificationContainer } from './components/NotificationContainer';
const App = observer(() => {
const location = useLocation();
@@ -39,6 +40,7 @@ const App = observer(() => {
return (
<>
{store.loading && <LoadingOverlay />}
<NotificationContainer />
<Routes>
<Route exact path="/" element={<Onboarding1 />} />
<Route path="/digitalId/profile-id" element={<ProfileId />} />