From 64a58522273a6791b82d4629771d77283d88bbf0 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Thu, 28 Sep 2023 13:17:09 -0400 Subject: [PATCH] spelling: evaluated Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- packages/bruno-electron/src/bru/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-electron/src/bru/index.js b/packages/bruno-electron/src/bru/index.js index 2a0d21da5..45b10004f 100644 --- a/packages/bruno-electron/src/bru/index.js +++ b/packages/bruno-electron/src/bru/index.js @@ -7,7 +7,7 @@ const bruToEnvJson = (bru) => { const json = bruToEnvJsonV2(bru); // the app env format requires each variable to have a type - // this need to be evaulated and safely removed + // this need to be evaluated and safely removed // i don't see it being used in schema validation if (json && json.variables && json.variables.length) { each(json.variables, (v) => (v.type = 'text'));