From 82a0df1fad4c437855ec2f8837d8988d11a85ec8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Alby?= Date: Tue, 1 Sep 2020 10:07:57 +0200 Subject: [PATCH] Merge pull request #3147 from overleaf/jel-sso-email-missing-error Update default missing SSO email error message GitOrigin-RevId: 03410a9b5c0f894c236f62148f03cb6243abad7a --- services/web/app/src/Features/Errors/Errors.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/web/app/src/Features/Errors/Errors.js b/services/web/app/src/Features/Errors/Errors.js index 2079439cb9..b281c005d0 100644 --- a/services/web/app/src/Features/Errors/Errors.js +++ b/services/web/app/src/Features/Errors/Errors.js @@ -109,7 +109,8 @@ class SAMLSessionDataMissing extends BackwardCompatibleError { settings.appName }. Please contact your IT department if you have any questions.` } else if (!institutionEmail) { - this.message = 'Unable to confirm your institution email.' + this.message = + 'Unable to confirm your institutional email address. The institutional identity provider did not provide an email address in the expected attribute. Please contact us if this keeps happening.' } } }