© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•4y ago•
28 replies
Roronoa Zoro

realtime only emitting DELETE events no INSERT or UPDATE events

 useEffect(() => {
    const users = supabaseWeb
      .from("users")
      .on("*", payload => {
        console.log("Change received!", payload)
      })
      .subscribe()
}, [])
 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
    );
CREATE POLICY "Enable read access for all users"
    ON public.users
    FOR SELECT USING (
        true
    );


Supabase:
1.33.3
1.33.3

Prisma:
4.1.1
4.1.1

Remix:
1.6.1
1.6.1

Mac OS Monterey
12.1
12.1
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Realtime only getting DELETE events
SupabaseSSupabase / help-and-questions
6mo ago
Broadcasting not emitting events
SupabaseSSupabase / help-and-questions
4mo ago
Supabase realtime not always emitting
SupabaseSSupabase / help-and-questions
4y ago
supabase realtime INSERT and UPDATE not working?
SupabaseSSupabase / help-and-questions
4y ago