import type { AppFlags } from "@calcom/features/flags/config"; import { trpc } from "@calcom/trpc/react"; const initialData: AppFlags = { organizations: false, teams: false, "calendar-cache": false, "calendar-cache-serve": false, emails: false, insights: false, webhooks: false, workflows: false, "email-verification": false, "google-workspace-directory": false, "disable-signup": false, attributes: false, "organizer-request-email-v2": false, "domain-wide-delegation": false, "salesforce-crm-tasker": false, }; if (process.env.NEXT_PUBLIC_IS_E2E) { initialData.organizations = true; initialData.teams = true; } export function useFlags(): Partial { const query = trpc.viewer.features.map.useQuery(); return query.data ?? initialData; }