From dad15133f4f1474d02980dade9605301d67c9e27 Mon Sep 17 00:00:00 2001 From: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com> Date: Mon, 18 Nov 2024 22:26:47 +0530 Subject: [PATCH] chore: resolve lint errors --- packages/hoppscotch-common/src/pages/graphql.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/hoppscotch-common/src/pages/graphql.vue b/packages/hoppscotch-common/src/pages/graphql.vue index fa3325cb..3a6d3f7f 100644 --- a/packages/hoppscotch-common/src/pages/graphql.vue +++ b/packages/hoppscotch-common/src/pages/graphql.vue @@ -87,8 +87,8 @@ import { usePageHead } from "@composables/head" import { useI18n } from "@composables/i18n" import { useService } from "dioc/vue" -import { computed, onBeforeUnmount, ref, watch } from "vue" -import { useToast } from "~/composables/toast" +import { computed, onBeforeUnmount, ref } from "vue" + import { defineActionHandler } from "~/helpers/actions" import { connection, disconnect } from "~/helpers/graphql/connection" import { getDefaultGQLRequest } from "~/helpers/graphql/default" @@ -98,7 +98,6 @@ import { HoppTab } from "~/services/tab" import { GQLTabService } from "~/services/tab/graphql" const t = useI18n() -const toast = useToast() const tabs = useService(GQLTabService) const currentTabID = computed(() => tabs.currentTabID.value)