From 459a386a3d6093fb62afd2c2913f3dd355a56ae5 Mon Sep 17 00:00:00 2001 From: Daniel Woelfel Date: Fri, 7 Aug 2026 10:15:58 -0700 Subject: [PATCH] display backups --- client/www/lib/flags.ts | 1 - client/www/pages/dash/index.tsx | 3 --- 2 files changed, 4 deletions(-) diff --git a/client/www/lib/flags.ts b/client/www/lib/flags.ts index 444a1adb9f..96fc7ec711 100644 --- a/client/www/lib/flags.ts +++ b/client/www/lib/flags.ts @@ -1,5 +1,4 @@ export const flags = { emails: false, createOrgs: true, - backups: false, } as const; diff --git a/client/www/pages/dash/index.tsx b/client/www/pages/dash/index.tsx index fd1611cb60..c756a29588 100644 --- a/client/www/pages/dash/index.tsx +++ b/client/www/pages/dash/index.tsx @@ -78,7 +78,6 @@ import { } from '@/components/ui'; import { SearchFilter, useSchemaQuery } from '@/lib/hooks/explorer'; import useLocalStorage from '@/lib/hooks/useLocalStorage'; -import { useFlag } from '@/lib/hooks/useFlag'; import { getLocallySavedApp, setLocallySavedApp } from '@/lib/locallySavedApp'; import clsx from 'clsx'; import { createPortal } from 'react-dom'; @@ -269,7 +268,6 @@ function Dashboard() { const router = useReadyRouter(); const fetchedDash = useFetchedDash(); const posthog = usePostHog(); - const showBackups = useFlag('backups'); const apps = fetchedDash.data.apps; const appId = @@ -561,7 +559,6 @@ function Dashboard() { // Role is the max between the org and the app const role = getRole(dashResponse.data, app); const availableTabs: TabItem[] = mainTabs - .filter((t) => t.id !== 'backups' || showBackups) .filter((t) => isTabAvailable(t, role)) .map((t) => { return {