"use client"; // AppShell runs in the browser (boot, React context), so the provider is a // Client Component. When Supabase env is NOT configured (no BFF yet) we mount the // provider WITHOUT `auth` — `useAuth()` still works (returns nulls / status // "unauthenticated"), and the existing mock portal remains the fallback. Once the // env is set + the Shell BFF is deployed, real auth flows through appshell-sdk. import { AppShellProvider } from "@abe-kap/appshell-sdk/react"; import type { AppShellOptions } from "@abe-kap/appshell-sdk"; import type { ReactNode } from "react"; const supabaseUrl = process.env.NEXT_PUBLIC_SUPABASE_URL; const bffBaseUrl = process.env.NEXT_PUBLIC_BFF_BASE_URL ?? "/shell"; const options: AppShellOptions = supabaseUrl ? { auth: { supabaseUrl, supabaseAnonKey: process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY ?? "", appId: "crm-web", }, bffBaseUrl, } : { bffBaseUrl }; export function Providers({ children }: { children: ReactNode }) { return {children}; }