realtime only emitting DELETE events no INSERT or UPDATE events
Replication is enabled
Select granted to public
I've also tried to add a policy :
Supabase:
1.33.3Prisma:
4.1.1Remix:
1.6.1Mac OS Monterey
12.1 useEffect(() => {
const users = supabaseWeb
.from("users")
.on("*", payload => {
console.log("Change received!", payload)
})
.subscribe()
}, [])CREATE POLICY "Enable read access for all users"
ON public.users
FOR SELECT USING (
true
);1.33.34.1.11.6.112.1