multica/apps/web/app/providers.tsx
Naiyuan Qing 7b581b4e39 fix(web): update Google OAuth Client ID
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-13 18:38:12 +08:00

15 lines
426 B
TypeScript

'use client'
import { GoogleOAuthProvider } from '@react-oauth/google'
// Google OAuth Client ID
// TODO: Move to environment variable
const GOOGLE_CLIENT_ID = '749099552710-jgkkffvfca1j68jc23b9tq962494m8c2.apps.googleusercontent.com'
export function Providers({ children }: { children: React.ReactNode }) {
return (
<GoogleOAuthProvider clientId={GOOGLE_CLIENT_ID}>
{children}
</GoogleOAuthProvider>
)
}