style: remove unused payload

This commit is contained in:
2025-06-16 17:19:10 +01:00
parent 9399a653a3
commit ba05fd478f

View File

@@ -19,7 +19,7 @@
});
const spacesChannel = supabase
.channel("study_space_updates")
.on("broadcast", { event: "study_space_updated" }, (payload) => {
.on("broadcast", { event: "study_space_updated" }, () => {
invalidate("db:study_spaces");
})
.subscribe();