Changed route ids to be more explicit.
This commit is contained in:
9
src/app/(main)/settings/websites/[websiteId]/page.tsx
Normal file
9
src/app/(main)/settings/websites/[websiteId]/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import WebsiteSettings from '../WebsiteSettings';
|
||||
|
||||
export default async function WebsiteSettingsPage({ params: { id } }) {
|
||||
if (process.env.cloudMode) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return <WebsiteSettings websiteId={id} />;
|
||||
}
|
||||
Reference in New Issue
Block a user