From 672ee69b2cf13f9584e830a7af271b9cbcddb586 Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Thu, 8 Feb 2024 22:33:03 +0530 Subject: [PATCH] chore: correct linting errors --- packages/hoppscotch-common/src/helpers/oauth.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/hoppscotch-common/src/helpers/oauth.ts b/packages/hoppscotch-common/src/helpers/oauth.ts index ce45432be..1e4267a2d 100644 --- a/packages/hoppscotch-common/src/helpers/oauth.ts +++ b/packages/hoppscotch-common/src/helpers/oauth.ts @@ -4,16 +4,13 @@ import { PersistenceService } from "~/services/persistence" import * as E from "fp-ts/Either" import { z } from "zod" import { InterceptorService } from "~/services/interceptor.service" -import { ExtensionInterceptorService } from "~/platform/std/interceptors/extension" import { AxiosRequestConfig } from "axios" -import { until } from "@vueuse/core" const redirectUri = `${window.location.origin}/oauth` const interceptorService = getService(InterceptorService) const persistenceService = getService(PersistenceService) -const extensionService = getService(ExtensionInterceptorService) // GENERAL HELPER FUNCTIONS