We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4f18d7 commit 77c62bbCopy full SHA for 77c62bb
packages/parse-react-ssr/src/index.ts
@@ -137,8 +137,8 @@ export const useParseQuery = <T extends Parse.Object<Parse.Attributes>>(
137
decodedQuery,
138
{
139
enabled: options && options.enabled || undefined,
140
- enableLocalDatastore: options && options.enableLocalDatastore || undefined,
141
- enableLiveQuery: options && options.enableLiveQuery || undefined,
+ enableLocalDatastore: (options && options.enableLocalDatastore) ?? undefined,
+ enableLiveQuery: (options && options.enableLiveQuery) ?? undefined,
142
initialLoad: options && options.initialLoad ||
143
findResult && {
144
results: findResultResults,
0 commit comments