From e0e73a48046d2286725ac1028c727c6ea7ceba47 Mon Sep 17 00:00:00 2001 From: Tarik Gul <47201679+TarikGul@users.noreply.github.com> Date: Wed, 17 Jan 2024 13:42:27 -0500 Subject: [PATCH] Update src/util/detectJsEvn.ts Co-authored-by: Dominique --- src/util/detectJsEvn.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/detectJsEvn.ts b/src/util/detectJsEvn.ts index fc32b765..06c8bd55 100644 --- a/src/util/detectJsEvn.ts +++ b/src/util/detectJsEvn.ts @@ -14,7 +14,7 @@ export const detectJsEnv = (): string => { if (isBrowser) return 'browser'; throw new BaseError( - 'The following JS enviornment is not supported. Currently only the browser, and NodeJS have support.', + 'The following JS environment is not supported. Currently only the browser, and NodeJS have support.', BaseErrorsEnum.UnsupportedEnviornment, ); };