diff --git a/apps/web/src/AppRoutes.tsx b/apps/web/src/AppRoutes.tsx index b6d678859f2..e12e82555d7 100644 --- a/apps/web/src/AppRoutes.tsx +++ b/apps/web/src/AppRoutes.tsx @@ -52,7 +52,7 @@ import { WorkflowsListPage } from './studio/components/workflows/WorkflowsListPa export const AppRoutes = () => { const isImprovedOnboardingEnabled = useFeatureFlag(FeatureFlagsKeysEnum.IS_IMPROVED_ONBOARDING_ENABLED); - const isInformationArchitectureEnabled = useFeatureFlag(FeatureFlagsKeysEnum.IS_INFORMATION_ARCHITECTURE_ENABLED); + const isInformationArchitectureEnabled = true; return ( diff --git a/apps/web/src/SettingsRoutes.tsx b/apps/web/src/SettingsRoutes.tsx index a7cdde2863a..3b5b579c33d 100644 --- a/apps/web/src/SettingsRoutes.tsx +++ b/apps/web/src/SettingsRoutes.tsx @@ -17,7 +17,7 @@ import { OrganizationPage } from './pages/settings/organization'; /** Note: using a hook is the only way to separate routes */ export const useSettingsRoutes = () => { - const isInformationArchitectureEnabled = useFeatureFlag(FeatureFlagsKeysEnum.IS_INFORMATION_ARCHITECTURE_ENABLED); + const isInformationArchitectureEnabled = true; if (isInformationArchitectureEnabled) { return ( diff --git a/apps/web/src/components/layout/components/NotificationCenterBell.tsx b/apps/web/src/components/layout/components/NotificationCenterBell.tsx index 9b1e4c67988..25a638801f9 100644 --- a/apps/web/src/components/layout/components/NotificationCenterBell.tsx +++ b/apps/web/src/components/layout/components/NotificationCenterBell.tsx @@ -12,7 +12,7 @@ export function NotificationCenterBell({ unseenCount?: number; colorScheme: ColorScheme; }) { - const isInformationArchitectureEnabled = useFeatureFlag(FeatureFlagsKeysEnum.IS_INFORMATION_ARCHITECTURE_ENABLED); + const isInformationArchitectureEnabled = true; if (!isInformationArchitectureEnabled) { return ; diff --git a/apps/web/src/components/layout/components/PrivatePageLayout.tsx b/apps/web/src/components/layout/components/PrivatePageLayout.tsx index 74664318a83..2271cea9d39 100644 --- a/apps/web/src/components/layout/components/PrivatePageLayout.tsx +++ b/apps/web/src/components/layout/components/PrivatePageLayout.tsx @@ -33,7 +33,7 @@ const ContentShell = styled.div` export function PrivatePageLayout() { const [isIntercomOpened, setIsIntercomOpened] = useState(false); - const isInformationArchitectureEnabled = useFeatureFlag(FeatureFlagsKeysEnum.IS_INFORMATION_ARCHITECTURE_ENABLED); + const isInformationArchitectureEnabled = true; return ( diff --git a/apps/web/src/components/layout/components/SideNav.tsx b/apps/web/src/components/layout/components/SideNav.tsx index 5d77240b548..4feaddc8ba1 100644 --- a/apps/web/src/components/layout/components/SideNav.tsx +++ b/apps/web/src/components/layout/components/SideNav.tsx @@ -80,7 +80,7 @@ export function SideNav({}: Props) { updateOnboardingStatus, } = useUserOnboardingStatus(); const showOnBoarding = isLoadingShowOnBoarding ? false : showOnBoardingState; - const isInformationArchitectureEnabled = useFeatureFlag(FeatureFlagsKeysEnum.IS_INFORMATION_ARCHITECTURE_ENABLED); + const isInformationArchitectureEnabled = true; useEffect(() => { removeItems(['toggle-environment']); diff --git a/apps/web/src/pages/layouts/v2/LayoutsPage.tsx b/apps/web/src/pages/layouts/v2/LayoutsPage.tsx index 24d25457308..1d4c00c7530 100644 --- a/apps/web/src/pages/layouts/v2/LayoutsPage.tsx +++ b/apps/web/src/pages/layouts/v2/LayoutsPage.tsx @@ -14,7 +14,7 @@ const LAYOUT = 'Layouts'; export function LayoutsPage() { const { currentOrganization, currentUser } = useAuth(); const { environment } = useEnvController(); - const isInformationArchitectureEnabled = useFeatureFlag(FeatureFlagsKeysEnum.IS_INFORMATION_ARCHITECTURE_ENABLED); + const isInformationArchitectureEnabled = true; const segment = useSegment(); diff --git a/apps/web/src/pages/settings/SettingsPage.tsx b/apps/web/src/pages/settings/SettingsPage.tsx index c21d973f101..5436080188c 100644 --- a/apps/web/src/pages/settings/SettingsPage.tsx +++ b/apps/web/src/pages/settings/SettingsPage.tsx @@ -29,7 +29,6 @@ export function SettingsPage() { const { classes } = useTabsStyles(false); const navigate = useNavigate(); const { pathname } = useLocation(); - const isInformationArchitectureEnabled = useFeatureFlag(FeatureFlagsKeysEnum.IS_INFORMATION_ARCHITECTURE_ENABLED); const value = useMemo(() => { return pathname === ROUTES.SETTINGS ? '/' : pathname.replace(ROUTES.SETTINGS, ''); @@ -68,10 +67,8 @@ export function SettingsPage() { API Keys Email Settings Billing - - Branding - Team Members - + Branding + Team Members Permissions SSO Data Integrations diff --git a/apps/web/src/pages/templates/components/email-editor/EmailMessageEditor.tsx b/apps/web/src/pages/templates/components/email-editor/EmailMessageEditor.tsx index 6b5496a7e8a..e4718145097 100644 --- a/apps/web/src/pages/templates/components/email-editor/EmailMessageEditor.tsx +++ b/apps/web/src/pages/templates/components/email-editor/EmailMessageEditor.tsx @@ -32,7 +32,7 @@ export function EmailMessageEditor({ branding: { color: string; logo: string } | undefined; readonly: boolean; }) { - const isInformationArchitectureEnabled = useFeatureFlag(FeatureFlagsKeysEnum.IS_INFORMATION_ARCHITECTURE_ENABLED); + const isInformationArchitectureEnabled = true; const methods = useFormContext(); const stepFormPath = useStepFormPath(); const contentBlocks = useFieldArray({