Skip to content

Commit d86e6b7

Browse files
kahirokunnAkryum
authored andcommitted
chore: remove blank (#882)
1 parent 9edcf2f commit d86e6b7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/vue-apollo-composable/src/useApolloClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const ApolloClients = Symbol('apollo-clients')
77
export function useApolloClient<TCacheShape = any> (clientId: string = null) {
88
const providedApolloClients: { [key: string]: ApolloClient<TCacheShape> } = inject(ApolloClients, null)
99
const providedApolloClient: ApolloClient<TCacheShape> = inject(DefaultApolloClient, null)
10-
10+
1111
function resolveClient (clientId: string = null): ApolloClient<TCacheShape> {
1212
let resolvedClient
1313
if (clientId) {
@@ -35,4 +35,4 @@ export function useApolloClient<TCacheShape = any> (clientId: string = null) {
3535
return resolveClient(clientId)
3636
}
3737
}
38-
}
38+
}

packages/vue-apollo-composable/src/useMutation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function useMutation<
2727
trackMutation(loading)
2828
const error = ref<Error>(null)
2929
const called = ref<boolean>(false)
30-
30+
3131
const doneEvent = useEventHook<FetchResult<TResult, Record<string, any>, Record<string, any>>>()
3232
const errorEvent = useEventHook<Error>()
3333

@@ -81,4 +81,4 @@ export function useMutation<
8181
onDone: doneEvent.on,
8282
onError: errorEvent.on,
8383
}
84-
}
84+
}

0 commit comments

Comments
 (0)