You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/vue-query/src/useBaseQuery.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ export function useBaseQuery<
68
68
if(process.env.NODE_ENV==='development'){
69
69
if(!getCurrentScope()){
70
70
console.warn(
71
-
'vue-query composables like "uesQuery()" should only be used inside a "setup()" function or a running effect scope. They might otherwise lead to memory leaks.',
71
+
'vue-query composables like "useQuery()" should only be used inside a "setup()" function or a running effect scope. They might otherwise lead to memory leaks.',
Copy file name to clipboardExpand all lines: packages/vue-query/src/useIsFetching.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ export function useIsFetching(
14
14
if(process.env.NODE_ENV==='development'){
15
15
if(!getCurrentScope()){
16
16
console.warn(
17
-
'vue-query composables like "uesQuery()" should only be used inside a "setup()" function or a running effect scope. They might otherwise lead to memory leaks.',
17
+
'vue-query composables like "useQuery()" should only be used inside a "setup()" function or a running effect scope. They might otherwise lead to memory leaks.',
Copy file name to clipboardExpand all lines: packages/vue-query/src/useMutation.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ export function useMutation<
68
68
if(process.env.NODE_ENV==='development'){
69
69
if(!getCurrentScope()){
70
70
console.warn(
71
-
'vue-query composables like "uesQuery()" should only be used inside a "setup()" function or a running effect scope. They might otherwise lead to memory leaks.',
71
+
'vue-query composables like "useQuery()" should only be used inside a "setup()" function or a running effect scope. They might otherwise lead to memory leaks.',
Copy file name to clipboardExpand all lines: packages/vue-query/src/useMutationState.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ export function useIsMutating(
28
28
if(process.env.NODE_ENV==='development'){
29
29
if(!getCurrentScope()){
30
30
console.warn(
31
-
'vue-query composables like "uesQuery()" should only be used inside a "setup()" function or a running effect scope. They might otherwise lead to memory leaks.',
31
+
'vue-query composables like "useQuery()" should only be used inside a "setup()" function or a running effect scope. They might otherwise lead to memory leaks.',
Copy file name to clipboardExpand all lines: packages/vue-query/src/useQueries.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -177,7 +177,7 @@ export function useQueries<
177
177
if(process.env.NODE_ENV==='development'){
178
178
if(!getCurrentScope()){
179
179
console.warn(
180
-
'vue-query composables like "uesQuery()" should only be used inside a "setup()" function or a running effect scope. They might otherwise lead to memory leaks.',
180
+
'vue-query composables like "useQuery()" should only be used inside a "setup()" function or a running effect scope. They might otherwise lead to memory leaks.',
0 commit comments