From 1367eebecb003af4282ba410cd5ee1b80749d060 Mon Sep 17 00:00:00 2001 From: Tai Sakuma Date: Fri, 15 Sep 2023 14:12:39 -0400 Subject: [PATCH] comment out console.error() --- src/utils/config/load-config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/config/load-config.ts b/src/utils/config/load-config.ts index 16dc0a3..31d3c81 100644 --- a/src/utils/config/load-config.ts +++ b/src/utils/config/load-config.ts @@ -27,7 +27,7 @@ export function useLoadConfigT( try { validate(config.value); } catch (e) { - console.error(e); + // console.error(e); return e; } });