File size: 151 Bytes
1e92f2d
 
 
 
 
 
1
2
3
4
5
6
7
import { useAuth } from '../auth';

export function useLocale() {
	const { user } = useAuth();
	return user.locale_variant || user.language || 'en';
}