diff --git a/frontend/src/metabase/auth/auth.js b/frontend/src/metabase/auth/auth.js
index 1a38018925d5583639e668b0c14ec9076ccc7cee..f0a09e3abd74cfcc28ed15a129bbe96304a8ab91 100644
--- a/frontend/src/metabase/auth/auth.js
+++ b/frontend/src/metabase/auth/auth.js
@@ -48,7 +48,10 @@ export const loginGoogle = createThunkAction(LOGIN_GOOGLE, function(
       MetabaseAnalytics.trackEvent("Auth", "Google Auth Login");
 
       // TODO: redirect after login (carry user to intended destination)
-      await dispatch(refreshCurrentUser());
+      await Promise.all([
+        dispatch(refreshCurrentUser()),
+        dispatch(refreshSiteSettings()),
+      ]);
       dispatch(push(redirectUrl || "/"));
     } catch (error) {
       await clearGoogleAuthCredentials();