realtime only emitting DELETE events no INSERT or UPDATE events

 useEffect(() => {
    const users = supabaseWeb
      .from("users")
      .on("*", payload => {
        console.log("Change received!", payload)
      })
      .subscribe()
}, [])


Replication is enabled ✅
Select granted to public ✅
I've also tried to add a policy :
CREATE POLICY "Enable read access for all users"
    ON public.users
    FOR SELECT USING (
        true
    );


Supabase: 1.33.3
Prisma: 4.1.1
Remix: 1.6.1
Mac OS Monterey 12.1
Was this page helpful?