apostrophe fix and dns details ordering

This commit is contained in:
2022-04-26 16:08:23 +01:00
parent 1fae028486
commit 19be69389e
15 changed files with 381 additions and 339 deletions
+4
View File
@@ -25,6 +25,7 @@ const Home = (props) => {
footerLinks,
pages,
showLogin,
showMap,
loggedInUserId,
hasGGCode,
loginEmailStr,
@@ -140,6 +141,7 @@ const Home = (props) => {
ggLocale={ggLocale}
pages={pages}
showLogin={showLogin}
showMap={showMap}
loggedInUserId={loggedInUserId}
GG_REDIRECT_URI={props.GG_REDIRECT_URI}
GG_CLIENT_ID={props.GG_CLIENT_ID}
@@ -164,6 +166,7 @@ export const getServerSideProps = wrapper.getServerSideProps(
console.log("gg local", query.ui_locales);
const showLoginCheck = process.env.SHOWLOGIN || false;
const showMapCheck = process.env.SHOWMAPS || false;
const hasLoginCode = typeof query.code != "undefined";
let providerConfig = await getProviderConfig();
@@ -224,6 +227,7 @@ export const getServerSideProps = wrapper.getServerSideProps(
props: {
ggLocale: ggLocale,
showLogin: showLoginCheck,
showMap: showMapCheck,
hasGGCode: hasLoginCode,
loggedInUserId: portalUserObj,
loggedInUserEmail: loginEmailStr,