Skip to content

Commit

Permalink
fix: Remove unintentional vue type import (#3631)
Browse files Browse the repository at this point in the history
* fix: Remove unintentional vue type import

* chore: add changelog entry
  • Loading branch information
clockworkgr authored Aug 23, 2023
1 parent e4ef6df commit 6cb985b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
- [#3598](https://github.com/ignite/cli/pull/3598) Fix consensus param keeper constructor key in `app.go`
- [#3610](https://github.com/ignite/cli/pull/3610) Fix overflow issue of cosmos faucet in `pkg/cosmosfaucet/transfer.go` and `pkg/cosmosfaucet/cosmosfaucet.go`
- [#3618](https://github.com/ignite/cli/pull/3618) Fix TS client generation import path issue
- [#3631](https://github.com/ignite/cli/pull/3631) Fix unnecessary vue import in hooks/composables template

## [`v0.27.0`](https://github.com/ignite/cli/releases/tag/v0.27.0)

Expand Down
3 changes: 1 addition & 2 deletions ignite/pkg/cosmosgen/templates/composable/index.ts.tpl
Original file line number Diff line number Diff line change
@@ -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();
Expand Down Expand Up @@ -118,4 +117,4 @@ export default function use{{ camelCaseUpperSta $.Module.Pkg.Name }}() {
{{- end -}}
{{- end }}
}
}
}

0 comments on commit 6cb985b

Please sign in to comment.