Missing visible param not being passed to api request

This commit is contained in:
Gabe Kangas
2025-12-23 15:12:25 -08:00
parent 81894c759b
commit 3b25e295e8
+1 -1
View File
@@ -12,7 +12,7 @@ class ChatModerationService {
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ idArray: [id] }),
body: JSON.stringify({ idArray: [id], visible: false }),
};
await fetch(hideMessageUrl, options);