We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fca604 commit c486948Copy full SHA for c486948
packages/data-connect/src/core/QueryManager.ts
@@ -105,9 +105,10 @@ export class QueryManager {
105
variables: queryRef.variables,
106
refType: QUERY_STR
107
});
108
- const trackedQuery = this._queries.get(
109
- key
110
- ) as TrackedQuery<Data, Variables>;
+ const trackedQuery = this._queries.get(key) as TrackedQuery<
+ Data,
+ Variables
111
+ >;
112
const subscription = {
113
userCallback: onResultCallback,
114
errCallback: onErrorCallback
0 commit comments