diff --git a/apps/frontend/src/components/launches/launches.component.tsx b/apps/frontend/src/components/launches/launches.component.tsx index 6871af91..e8f9c424 100644 --- a/apps/frontend/src/components/launches/launches.component.tsx +++ b/apps/frontend/src/components/launches/launches.component.tsx @@ -78,6 +78,7 @@ interface MenuComponentInterface { identifier: string; } ) => () => void; + collapsed: boolean; continueIntegration: (integration: Integration) => () => void; totalNonDisabledChannels: number; mutate: (shouldReload?: boolean) => void; @@ -130,6 +131,7 @@ export const MenuGroupComponent: FC< totalNonDisabledChannels, refreshChannel, changeItemGroup, + collapsed, } = props; const [isOpen, setIsOpen] = useState( !!+(localStorage.getItem(group.name + '_isOpen') || '1') @@ -177,7 +179,17 @@ export const MenuGroupComponent: FC<