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
@@ -74,7 +74,7 @@ export function useBaseQuery<
74
74
if(process.env.NODE_ENV==='development'){
75
75
if(!getCurrentScope()){
76
76
console.warn(
77
-
'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.',
77
+
'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
@@ -27,7 +27,7 @@ export function useIsFetching(
27
27
if(process.env.NODE_ENV==='development'){
28
28
if(!getCurrentScope()){
29
29
console.warn(
30
-
'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.',
30
+
'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/useIsMutating.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ export function useIsMutating(
27
27
if(process.env.NODE_ENV==='development'){
28
28
if(!getCurrentScope()){
29
29
console.warn(
30
-
'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.',
30
+
'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
@@ -152,7 +152,7 @@ export function useMutation<
152
152
if(process.env.NODE_ENV==='development'){
153
153
if(!getCurrentScope()){
154
154
console.warn(
155
-
'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.',
155
+
'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
@@ -143,7 +143,7 @@ export function useQueries<T extends any[]>({
143
143
if(process.env.NODE_ENV==='development'){
144
144
if(!getCurrentScope()){
145
145
console.warn(
146
-
'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.',
146
+
'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