Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { useAuth } from '../auth';
export function useLocale() {
const { user } = useAuth();
return user.locale_variant || user.language || 'en';
}