Skip to content

Commit

Permalink
fix: do not redirect to sign in
Browse files Browse the repository at this point in the history
  • Loading branch information
meelrossi committed Jan 11, 2024
1 parent 388c7cb commit a63840c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/routing/Routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { t } from 'decentraland-dapps/dist/modules/translation/utils'

import { locations } from 'routing/locations'

import { ProtectedRoute } from 'modules/ProtectedRoute'
import Intercom from 'components/Intercom'
import Footer from 'components/Footer'
import Navbar from 'components/Navbar'
Expand Down Expand Up @@ -121,7 +120,7 @@ export default class Routes extends React.Component<Props, State> {
<Route exact path={locations.landOperator()} component={LandOperatorPage} />
<Route exact path={locations.activity()} component={ActivityPage} />
<Route exact path={locations.settings()} component={SettingsPage} />
<ProtectedRoute exact path={locations.scenes()} component={ScenesPage} />
<Route exact path={locations.scenes()} component={ScenesPage} />
<Route exact path={locations.sceneDetail()} component={SceneDetailPage} />
<Route exact path={locations.templates()} component={TemplatesPage} />
<Route exact path={locations.templateDetail()} component={TemplateDetailPage} />
Expand Down

0 comments on commit a63840c

Please sign in to comment.