Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Formatting
  • Loading branch information
maneesht committed Jan 9, 2025
commit c486948ac89f98f482a39afdf03622c88d5f8767
7 changes: 4 additions & 3 deletions packages/data-connect/src/core/QueryManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,10 @@ export class QueryManager {
variables: queryRef.variables,
refType: QUERY_STR
});
const trackedQuery = this._queries.get(
key
) as TrackedQuery<Data, Variables>;
const trackedQuery = this._queries.get(key) as TrackedQuery<
Data,
Variables
>;
const subscription = {
userCallback: onResultCallback,
errCallback: onErrorCallback
Expand Down
Loading