diff --git a/packages/app-portal/src/systems/Ecosystem/components/EcosystemHeader/EcosystemHeader.tsx b/packages/app-portal/src/systems/Ecosystem/components/EcosystemHeader/EcosystemHeader.tsx
index 597535c7d..8d8d13ba7 100644
--- a/packages/app-portal/src/systems/Ecosystem/components/EcosystemHeader/EcosystemHeader.tsx
+++ b/packages/app-portal/src/systems/Ecosystem/components/EcosystemHeader/EcosystemHeader.tsx
@@ -1,4 +1,4 @@
-import { Button, Flex, Input, Separator } from '@fuels/ui';
+import { Button, Flex, Input, Separator, Switch, Text } from '@fuels/ui';
import { IconSearch } from '@tabler/icons-react';
import { PageTitle } from 'app-commons';
import { tv } from 'tailwind-variants';
@@ -7,10 +7,14 @@ export function EcosystemHeader({
disabled,
search,
onSearchChange,
+ onBuildingHiddenChange,
+ isBuildingHidden,
}: {
disabled?: boolean;
search?: string;
+ isBuildingHidden?: boolean;
onSearchChange?: (value: string) => void;
+ onBuildingHiddenChange?: (value: boolean) => void;
}) {
const classes = styles();
@@ -39,7 +43,16 @@ export function EcosystemHeader({
-
+
+