AbdulElahGwaith's picture
Upload folder using huggingface_hub
84c1942 verified
Raw
History Blame Contribute Delete
293 Bytes
export function hasLogIn(): boolean {
const hasDevAuth = process.env.LOCAL_SERVER || process.env.STAGING;
return Boolean(
typeof document !== 'undefined' &&
(document.cookie.indexOf('signedIn') > -1 ||
(hasDevAuth && document.cookie.indexOf('signedInDev') > -1))
);
}