ai-comic-factory / src /lib /useOAuthClientId.ts
jbilcke-hf's picture
jbilcke-hf HF staff
working on the Hugging Face Sign-In
0ed5b20
raw
history blame
No virus
171 Bytes
"use client"
export function useOAuthClientId(): string {
const oauthClientId = `${process.env.NEXT_PUBLIC_HUGGING_FACE_OAUTH_CLIENT_ID || ""}`
return oauthClientId
}