Teams context settings.
This commit is contained in:
@@ -2,15 +2,15 @@ import WebsitesHeader from 'app/(main)/settings/websites/WebsitesHeader';
|
||||
import WebsitesBrowse from './WebsitesBrowse';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export default function WebsitesPage() {
|
||||
export default function WebsitesPage({ params: { teamId, userId } }) {
|
||||
return (
|
||||
<>
|
||||
<WebsitesHeader showActions={false} />
|
||||
<WebsitesBrowse />
|
||||
<WebsitesBrowse teamId={teamId} userId={userId} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Websites | umami',
|
||||
title: 'Websites | Umami',
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user