Hello ! I render a hello word and I get this error when I' m trying to access to my page. Here is my code
async function getPerson(record: string) {
const res = await fetch(`http://127.0.0.1:8090/api/collections/persons/records/${record}`);
return res.json();
}
export default async function Page() {
return (
<>
<h1>Hello</h1>
</>
);
}``` the filename is called [record].tsx. I' ll appreciate any help