Hello,I have a server component that fetches some data from Supabase and display it.
If I change some info inside the table, the data fetched in production dosen't change, no matter hard refresh/ etc.
I don't get what could be the problem.
export const revalidate = 0;
async function fetchCoins() { let { data } = await supabase.from("xCoins").select("*").order("votes", {ascending: false }); return data; }
async function CoinTable() {
const coins = await fetchCoins();
return (
// Here I display fetched data. It does not update at refresh.
<div>{coins}</div>
);
}