From 345d1b77bf4feb187616a6f59358ced10a6e19f0 Mon Sep 17 00:00:00 2001 From: Thomas Belin Date: Thu, 27 Oct 2022 09:08:43 +0200 Subject: [PATCH] runfix: Gracefully handle account suspended errors --- src/script/auth/page/Login.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/script/auth/page/Login.tsx b/src/script/auth/page/Login.tsx index d29a10823dc..9ebf416809c 100644 --- a/src/script/auth/page/Login.tsx +++ b/src/script/auth/page/Login.tsx @@ -213,6 +213,7 @@ const Login = ({ break; } case BackendError.LABEL.INVALID_CREDENTIALS: + case BackendError.LABEL.SUSPENDED: case LabeledError.GENERAL_ERRORS.LOW_DISK_SPACE: { break; }