"use client"; import { GoogleOAuthProvider } from "@react-oauth/google"; import { AuthProvider } from "@/contexts/AuthContext"; import { ReactNode } from "react"; export function Providers({ children }: { children: ReactNode }) { // Use a dummy client ID if not provided to prevent context errors // The actual authentication will still check for a valid ID const googleClientId = process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID || 'dummy-client-id-not-configured'; return ( {children} ); }