Skip to content

Commit

Permalink
persist should be part of rest of options
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoh committed Dec 13, 2024
1 parent 2200bea commit 8f4d75f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/core/src/Coordinator.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,10 @@ export class Coordinator {
query(query, {
type = 'arrow',
cache = true,
persist = false,
priority = Priority.Normal,
...options
} = {}) {
return this.manager.request({ type, query, cache, persist, options }, priority);
return this.manager.request({ type, query, cache, options }, priority);
}

/**
Expand Down

0 comments on commit 8f4d75f

Please sign in to comment.