File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
packages/console/src/cloud Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import { Suspense } from 'react';
22import { Route , Routes } from 'react-router-dom' ;
33
44import DelayedSuspenseFallback from '@/components/DelayedSuspenseFallback' ;
5- import { isDevFeaturesEnabled } from '@/consts/env' ;
65import ProtectedRoutes from '@/containers/ProtectedRoutes' ;
76import { GlobalAnonymousRoute , GlobalRoute } from '@/contexts/TenantsProvider' ;
87import { OnboardingApp } from '@/onboarding' ;
@@ -26,12 +25,10 @@ function AppRoutes() {
2625 < Routes >
2726 < Route path = { GlobalAnonymousRoute . Callback } element = { < Callback /> } />
2827 < Route path = { GlobalAnonymousRoute . SocialDemoCallback } element = { < SocialDemoCallback /> } />
29- { isDevFeaturesEnabled && (
30- < Route
31- path = { GlobalAnonymousRoute . OneTimeTokenLanding }
32- element = { < OneTimeTokenLanding /> }
33- />
34- ) }
28+ < Route
29+ path = { GlobalAnonymousRoute . OneTimeTokenLanding }
30+ element = { < OneTimeTokenLanding /> }
31+ />
3532 < Route
3633 path = { GlobalAnonymousRoute . ExternalGoogleOneTapLanding }
3734 element = { < ExternalGoogleOneTapLanding /> }
You can’t perform that action at this time.
0 commit comments