diff --git a/src/components/Connection/GRDFConnect/GrdfWaitConsent.scss b/src/components/Connection/GRDFConnect/GrdfWaitConsent.scss
index e87c90a4a3e00b7b18fe6a6d213a8a3cbfc3e763..fa3c86e2e7d542b51429f74f20f2d246d760198b 100644
--- a/src/components/Connection/GRDFConnect/GrdfWaitConsent.scss
+++ b/src/components/Connection/GRDFConnect/GrdfWaitConsent.scss
@@ -1,7 +1,6 @@
 @import 'src/styles/base/color';
 
 .grdfWait {
-  margin: auto;
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
@@ -10,7 +9,7 @@
   padding-inline: 1rem;
 
   .green {
-    color: var(--gasColor);
+    color: $gas-color;
   }
 
   .emailContainer {
diff --git a/src/utils/utils.spec.ts b/src/utils/utils.spec.ts
index 367666007f256f9d7f660a259146b0e8f4bd5fb7..175d26034261b6427a8621c1d71cd40590419791 100644
--- a/src/utils/utils.spec.ts
+++ b/src/utils/utils.spec.ts
@@ -70,7 +70,7 @@ describe('utils test', () => {
       const result = getKonnectorUpdateError('LOGIN_FAILED')
       expect(result).toBe(KonnectorUpdate.LOGIN_FAILED)
     })
-    it('should return KonnectorUpdate.ERROR_CONSENT_FORM_GAS for CHALLENGE_ASKED', () => {
+    it('should return KonnectorUpdate.ERROR_UPDATE for CHALLENGE_ASKED', () => {
       const result = getKonnectorUpdateError('CHALLENGE_ASKED')
       expect(result).toBe(KonnectorUpdate.ERROR_UPDATE)
     })