Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion client/www/lib/flags.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export const flags = {
emails: false,
createOrgs: true,
backups: false,
} as const;
3 changes: 0 additions & 3 deletions client/www/pages/dash/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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 =
Expand Down Expand Up @@ -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 {
Expand Down
Loading