Commit 69f5151e authored by Arun Kumar's avatar Arun Kumar
Browse files

removed base-name

No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -64,7 +64,7 @@ function App() {
});
const messaging = getMessaging(fireBaseApp);
const onMessageListener = (async () => {
const onMessageListener = (async () => {
const messagingResolve = await messaging;
if (messagingResolve) {
onMessage(messagingResolve, (payload) => {
......@@ -77,7 +77,7 @@ function App() {
}));
});
}
})();
})();
useEffect(() => {
getPermissionForToken();
......@@ -102,7 +102,7 @@ function App() {
{toast.toastOpen && (
<Toast toastMsg={toast.toastMsg} toastType={toast.toastType} />
)}
<BrowserRouter basename={'/app'}>
<BrowserRouter>
<Routes>
{/* Default landing page */}
{ <Route path="/" element={<Navigate to="/auth/login" />} /> }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment