garyaustin
07/18/2022, 12:59 PMTaofiq
07/18/2022, 2:50 PMuseEffect(() => {
fetchData();
const mySubscription = supabase
.from("posts")
.on("*", () => fetchData())
.subscribe();
return () => mySubscription.unsubscribe(mySubscription);
}, []);
here is the code i am using to implement the realtime update feature in NextjsTaofiq
07/18/2022, 2:51 PMgaryaustin
07/18/2022, 2:55 PMTaofiq
07/18/2022, 3:26 PM