Fixed team website create.

This commit is contained in:
Mike Cao 2024-02-04 00:09:15 -08:00
parent e971f2533d
commit d9670f10a4
8 changed files with 29 additions and 39 deletions

View file

@ -1,12 +1,12 @@
import WebsitesHeader from 'app/(main)/settings/websites/WebsitesHeader';
import WebsitesBrowse from './WebsitesBrowse';
import Websites from './Websites';
import { Metadata } from 'next';
export default function WebsitesPage({ params: { teamId, userId } }) {
return (
<>
<WebsitesHeader teamId={teamId} showActions={false} />
<WebsitesBrowse teamId={teamId} userId={userId} />
<WebsitesHeader teamId={teamId} />
<Websites teamId={teamId} userId={userId} />
</>
);
}