From 1c8cd765b6f8b791c1fe0c54ae7c178543d8130c Mon Sep 17 00:00:00 2001 From: Clockwork Date: Wed, 23 Aug 2023 00:31:48 +0300 Subject: [PATCH] fix: Remove unintentional vue type import --- ignite/pkg/cosmosgen/templates/composable/index.ts.tpl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ignite/pkg/cosmosgen/templates/composable/index.ts.tpl b/ignite/pkg/cosmosgen/templates/composable/index.ts.tpl index 49e27bccc1..76eb8a6ad7 100644 --- a/ignite/pkg/cosmosgen/templates/composable/index.ts.tpl +++ b/ignite/pkg/cosmosgen/templates/composable/index.ts.tpl @@ -1,7 +1,6 @@ /* eslint-disable @typescript-eslint/no-unused-vars */ import { useQuery, type UseQueryOptions, useInfiniteQuery, type UseInfiniteQueryOptions } from "@tanstack/{{- .FrontendType -}}-query"; import { useClient } from '../useClient'; -import type { Ref } from 'vue' export default function use{{ camelCaseUpperSta $.Module.Pkg.Name }}() { const client = useClient(); @@ -118,4 +117,4 @@ export default function use{{ camelCaseUpperSta $.Module.Pkg.Name }}() { {{- end -}} {{- end }} } -} \ No newline at end of file +}