Make more pages static

This commit is contained in:
Konstantin Wohlwend 2025-10-21 00:39:29 -07:00
parent ed5a988d43
commit 0433228f1c
3 changed files with 4 additions and 6 deletions

View File

@ -4,12 +4,10 @@ export const metadata = {
title: "Auth Settings",
};
export const generateStaticParams = async () => {
return [];
};
export const dynamicParams = true;
export default function Page() {
return (

View File

@ -10,6 +10,10 @@ type Params = {
storeId: string,
};
export const generateStaticParams = async () => {
return [];
};
export default async function Page({ params }: { params: Promise<Params> }) {
const { storeId } = await params;
return (

View File

@ -5,10 +5,6 @@ export const metadata: Metadata = {
title: "Data Vault Stores",
};
type Params = {
projectId: string,
};
export default async function Page() {
return (
<PageClient />