From e394d702061a32c92e865b281cc4bd8e73f19e96 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Mon, 20 Nov 2023 18:28:28 -0800 Subject: [PATCH] fix: error message wording --- backend/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/constants.py b/backend/constants.py index c0528129b..b383957b3 100644 --- a/backend/constants.py +++ b/backend/constants.py @@ -10,7 +10,7 @@ class ERROR_MESSAGES(str, Enum): return super().__str__() DEFAULT = lambda err="": f"Something went wrong :/\n{err if err else ''}" - ENV_VAR_NOT_FOUND = "Essential environment variable not found. Terminating now." + ENV_VAR_NOT_FOUND = "Required environment variable not found. Terminating now." INVALID_TOKEN = ( "Your session has expired or the token is invalid. Please sign in again." )