From 47f3edab4f1ac8262f975cc0c5b60e0af4ce2956 Mon Sep 17 00:00:00 2001 From: Eric Thuaud Date: Thu, 23 Jun 2022 12:25:00 +0200 Subject: [PATCH] fix small error --- .k8s/deployment.yaml | 2 +- package.json | 2 +- src/components/auth/component.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.k8s/deployment.yaml b/.k8s/deployment.yaml index ceb36d5..406b98a 100644 --- a/.k8s/deployment.yaml +++ b/.k8s/deployment.yaml @@ -14,4 +14,4 @@ spec: spec: containers: - name: coleman-access - image: inseefr/coleman-access:0.10.0 + image: inseefr/coleman-access:0.10.1 diff --git a/package.json b/package.json index 4ba0f61..033ea31 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "colempub", - "version": "0.10.0", + "version": "0.10.1", "dependencies": { "axios": "^0.19.2", "bootstrap": "^3.3.7", diff --git a/src/components/auth/component.js b/src/components/auth/component.js index e4d72e6..0c07440 100644 --- a/src/components/auth/component.js +++ b/src/components/auth/component.js @@ -38,7 +38,7 @@ const Auth = ({ urlBackEnd, id, history, keycloakAuth }) => { // including 410 status - no habilitation found setError('technique'); } - }, [history, id, urlBackEnd]); + }, [history, id, urlBackEnd, keycloakAuth]); useEffect(() => { if (authenticated && !loading) redirectToQuestionnaire();