We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8b208f commit 3acc8a0Copy full SHA for 3acc8a0
src/api/notificationsBulkUpdates.ts
@@ -24,7 +24,7 @@ const notificationsBulkUpdates = (
24
if (category)
25
path = `${path}?category=${category}`;
26
27
- if (isRead)
+ if (isRead !== undefined)
28
path = path.includes('?') ? `${path}&isRead=${isRead}` : `${path}?isRead=${isRead}`;
29
30
const resp: Promise<ActionResponse> = httpPost(
0 commit comments