diff --git a/charts/webstore/templates/deployment.yaml b/charts/webstore/templates/deployment.yaml
index 8e1cce7..a624afb 100644
--- a/charts/webstore/templates/deployment.yaml
+++ b/charts/webstore/templates/deployment.yaml
@@ -38,14 +38,14 @@ spec:
value: "{{ .Values.clientSecret }}"
- name: CLIENT_ID
value: "{{ .Values.clientId }}"
- - name: GOOGLE_TAG_MANAGER_ID
- value: "{{ .Values.googleTagManagerId }}"
- name: NEXTAUTH_SECRET
value: "{{ .Values.nextAuthSecret }}"
- name: NEXTAUTH_URL
value: "{{ .Values.nextAuthUrl }}"
- name: NEXT_PUBLIC_APP_BASE_URL
value: "{{ .Values.appBaseUrl }}"
+ - name: NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID
+ value: "{{ .Values.googleTagManagerId }}"
- name: NEXT_PUBLIC_PROVIDER_ID
value: "{{ .Values.providerId }}"
- name: NEXT_PUBLIC_PROVIDER_NAME
diff --git a/pages/_app.js b/pages/_app.js
index 9ede25e..742695e 100644
--- a/pages/_app.js
+++ b/pages/_app.js
@@ -41,7 +41,7 @@ const WebStore = ({ Component }) => {
enableCookies={enableCookies}
getCookieConsent={getCookieConsent()}
/> */}
-
+
signIn(process.env.NEXT_PUBLIC_PROVIDER_NAME),