fix(i18n): load locales from file system, instead of http-backend

This commit is contained in:
Amruth Pillai
2022-03-05 10:08:28 +01:00
parent 7c73685759
commit a4983ac6bc
74 changed files with 105 additions and 142 deletions

View File

@ -54,7 +54,7 @@ const LoginModal: React.FC = () => {
);
const { signIn } = useGoogleLogin({
clientId: process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID,
clientId: process.env.googleClientId,
onSuccess: async (response: GoogleLoginResponse) => {
await loginWithGoogleMutation({ accessToken: response.accessToken });