useParseQuery close livequery fail, set options doesn't work
scottjeremy opened this issue · 1 comments
scottjeremy commented
- When I use useParseQuery func
const { isLive, isSyncing, isLoading, results, error } = useParseQuery(query, {
enableLiveQuery: false // not work.
});
-
This still turns on LiveQuery
-
I found the problem
parse-react-ssr
In parse-react-ssr, when I set enableLiveQuery false, this is always going to be undefined.
parse-react-base
In parse-react-base, when undefined is received, it is always set to true.
scottjeremy commented
Fix #90