From 477811c414b9de334593ef3578a25ca2e7080414 Mon Sep 17 00:00:00 2001 From: Jason Casareno Date: Fri, 12 Aug 2022 15:03:54 -0700 Subject: [PATCH] Removed console.log messages --- packages/hoppscotch-app/components/http/Variables.vue | 9 --------- 1 file changed, 9 deletions(-) diff --git a/packages/hoppscotch-app/components/http/Variables.vue b/packages/hoppscotch-app/components/http/Variables.vue index 5885fa5e6..e46fe6cb2 100644 --- a/packages/hoppscotch-app/components/http/Variables.vue +++ b/packages/hoppscotch-app/components/http/Variables.vue @@ -252,15 +252,6 @@ const deleteVar = (index: number) => { const envExpandError = computed(() => { const variables = pipe(vars.value) - console.log( - pipe( - variables, - A.exists(({ value }) => - E.isLeft(parseMyVariablesString(value, variables)) - ) - ) - ) - return pipe( variables, A.exists(({ value }) => E.isLeft(parseMyVariablesString(value, variables)))