Merge branch 'develop' into 'main'

Develop

See merge request witapp/aura-webapp!702
This commit is contained in:
Daniil Chemerkin 2025-03-25 21:42:40 +00:00
commit b66ac7f7ec
2 changed files with 5 additions and 3 deletions

View File

@ -494,12 +494,14 @@ function App(): JSX.Element {
/> />
</Route> </Route>
</Route> </Route>
<Route path="*" element={<ABDesignV1Routes />} />
<Route path="*" element={<Navigate to={getRouteBy(subscriptionStatus)} />} /> <Route path="*" element={<Navigate to={getRouteBy(subscriptionStatus)} />} />
{/* ROUTES OFF */} {/* ROUTES OFF */}
<Route path="*" element={<ABDesignV1Routes />} /> {/* <Route path="*" element={<ABDesignV1Routes />} /> */}
<Route path={`${chatsPrefix}/*`} element={<ChatsRoutes />} /> <Route path={`${chatsPrefix}/*`} element={<ChatsRoutes />} />
<Route <Route
path={`${routes.client.mikeV1()}/*`} path={`${routes.client.mikeV1()}/*`}

View File

@ -60,9 +60,9 @@ function OnboardingPage() {
if (auraVideoTrial === "on") { if (auraVideoTrial === "on") {
return navigate(routes.client.trialChoiceVideoV1()); return navigate(routes.client.trialChoiceVideoV1());
} }
if (authCode?.length) { // if (authCode?.length) {
return navigate(routes.client.tryAppV1()); return navigate(routes.client.tryAppV1());
} // }
return navigate(routes.client.trialChoiceV1()); return navigate(routes.client.trialChoiceV1());
}, [auraVideoTrial, authCode?.length, navigate, path]); }, [auraVideoTrial, authCode?.length, navigate, path]);