Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1415fc3

Browse files
committedJan 26, 2025·
fix typo
1 parent fe5836d commit 1415fc3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎__fixtures__/v-next/outputhelperfunc/vue-query.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ interface UseTendermintClient extends VueQueryParams<Tendermint34Client | Tender
118118
/**
119119
* Function that uses vue-query to cache a connected tendermint client.
120120
*/
121-
export function useTendermintClient = ({
121+
export const useTendermintClient = ({
122122
rpcEndpoint,
123123
options,
124124
}: UseTendermintClient) => {

‎__fixtures__/v-next/outputicjs/vue-query.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ interface UseTendermintClient extends VueQueryParams<Tendermint34Client> {
118118
/**
119119
* Function that uses vue-query to cache a connected tendermint client.
120120
*/
121-
export function useTendermintClient = ({
121+
export const useTendermintClient = ({
122122
rpcEndpoint,
123123
options,
124124
}: UseTendermintClient) => {

‎packages/telescope/src/helpers/vue-query-hooks.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ ${
123123
/**
124124
* Function that uses vue-query to cache a connected tendermint client.
125125
*/
126-
export function useTendermintClient = ({
126+
export const useTendermintClient = ({
127127
rpcEndpoint,
128128
options,
129129
}: UseTendermintClient) => {

0 commit comments

Comments
 (0)
Please sign in to comment.