Skip to content

Commit

Permalink
fix: queryExist
Browse files Browse the repository at this point in the history
  • Loading branch information
jonalan7 committed Jun 3, 2021
1 parent cc8ece0 commit 1e5e2a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/wapi/store/store-objects.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ export const storeObjects = [
{
id: 'WapQuery',
conditions: (module) =>
module.queryExist
? module
: module.default && module.default.queryExist
module.default &&
module.default.contactFindQuery &&
module.default.queryExist
? module.default
: null,
},
Expand Down

1 comment on commit 1e5e2a6

@jonalan7
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.