Skip to content

Commit

Permalink
chore(editor-3001): reroute editor (#27205)
Browse files Browse the repository at this point in the history
  • Loading branch information
EDsCODE authored Jan 2, 2025
1 parent 83a07c1 commit 88556b2
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions frontend/src/layout/navigation-3000/navigationLogic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -515,21 +515,20 @@ export const navigation3000Logic = kea<navigation3000LogicType>([
to: urls.earlyAccessFeatures(),
}
: null,
{
identifier: Scene.DataWarehouse,
label: 'Data warehouse',
icon: <IconDatabase />,
to: isUsingSidebar ? undefined : urls.dataWarehouse(),
},
featureFlags[FEATURE_FLAGS.SQL_EDITOR]
? {
identifier: Scene.SQLEditor,
label: 'SQL Editor',
label: 'SQL editor',
icon: <IconServer />,
to: urls.sqlEditor(),
logic: editorSidebarLogic,
}
: null,
: {
identifier: Scene.DataWarehouse,
label: 'Data warehouse',
icon: <IconDatabase />,
to: isUsingSidebar ? undefined : urls.dataWarehouse(),
},
hasOnboardedAnyProduct
? {
identifier: Scene.Pipeline,
Expand Down

0 comments on commit 88556b2

Please sign in to comment.