I've got a simple React Server Component (below) that seems to get it's data at build time and never reloads it when the site is running. I would have thought that it would retrieve the data once when the server component first rendered.
Without converting it to a client component, how can I get this server component to reload when page first is requested with a GET.
import prisma from "@/lib/prisma";
export default async function AdminNewsSourceList() {
const dataNewsSource = await prisma.newsSource.findMany();
return (
<div className="container">
<h1 className="my-3">News Sources</h1>
<table className="table table-striped">
...