i have the same proble my code is this :
const DashboardPage: React.FC = async ({ params }) => {
const store = await prismadb.store.findFirst({
where: {
id: params.storeId
}
});
return (
<div>
Active Store: {store?.name}
</div>
);
}
export default DashboardPage;
Did you solve the problem ?