diff --git a/frontend/src/components/AppHeader.tsx b/frontend/src/components/AppHeader.tsx index 0ba3eba7..c0db8167 100644 --- a/frontend/src/components/AppHeader.tsx +++ b/frontend/src/components/AppHeader.tsx @@ -7,13 +7,19 @@ type Props = { description?: string | ReactElement; contentRight?: React.ReactNode; breadcrumb?: boolean; + addSidebarTrigger?: boolean; }; -function AppHeader({ title, description = "", contentRight }: Props) { +function AppHeader({ + title, + description = "", + contentRight, + addSidebarTrigger = true, +}: Props) { return ( <>
- + {addSidebarTrigger && }
diff --git a/frontend/src/screens/CreateNodeMigrationFileSuccess.tsx b/frontend/src/screens/CreateNodeMigrationFileSuccess.tsx index dabd912e..702b3067 100644 --- a/frontend/src/screens/CreateNodeMigrationFileSuccess.tsx +++ b/frontend/src/screens/CreateNodeMigrationFileSuccess.tsx @@ -9,6 +9,7 @@ export function CreateNodeMigrationFileSuccess() {