From ec9f10bf1385441c17a07c3c5fb7f04a6a31664d Mon Sep 17 00:00:00 2001 From: Christian Carlsson Date: Fri, 10 Jan 2025 15:08:00 +0000 Subject: [PATCH] checkpoint --- web/src/http/requests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/http/requests.ts b/web/src/http/requests.ts index 5643d2c2..ac0e4702 100644 --- a/web/src/http/requests.ts +++ b/web/src/http/requests.ts @@ -489,7 +489,7 @@ const tryCatch = async (fn: () => Promise): Promise => { } } - // DEBT: Filter out some error codes to alert the user until we have a better way to handle errors. + // DEBT: Filter out some error codes to alert the user until we have a better way to handle them. const ignoredCodes: Code[] = [Code.Unauthenticated, Code.Unavailable, Code.Canceled] if (!ignoredCodes.includes(error.code)) { alert(`${error.code}: ${error.message}`)