fix: add recording setup route

This commit is contained in:
Rohit Rajan
2025-11-04 13:10:41 +05:30
parent 58aa5f5c56
commit d7da903ceb

View File

@@ -116,6 +116,10 @@ export const PageWrapper = () => {
path="/register"
element={<Register />}
/>
<Route
path="/recording-setup"
element={<div />}
/>
<Route path="*" element={<NotFoundPage />} />
</Routes>
</React.Fragment>