We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0b7a4c commit a0d63e8Copy full SHA for a0d63e8
1 file changed
src/components/Routes.tsx
@@ -1,4 +1,5 @@
1
import ScrollToTop from "./ScrollToTop";
2
+import CompleteProfile from "./User/CompleteProfile";
3
import FullScreen from "design/Layouts/FullScreen";
4
import AboutPage from "pages/AboutPage";
5
import DatabasePage from "pages/DatabasePage";
@@ -48,6 +49,8 @@ const Routes = () => (
48
49
{/* Email Verification Routes */}
50
<Route path="/verify-email" element={<VerifyEmail />} />
51
<Route path="/resend-verification" element={<ResendVerification />} />
52
+
53
+ <Route path="/complete-profile" element={<CompleteProfile />} />
54
</Route>
55
</RouterRoutes>
56
</>
0 commit comments