Fixed teams urls.

This commit is contained in:
Mike Cao 2024-06-01 14:06:17 -07:00
parent 8a722ff013
commit 4b67d10f04
8 changed files with 17 additions and 25 deletions

View file

@ -1,8 +1,8 @@
import WebsitesPage from './WebsitesPage';
import { Metadata } from 'next';
export default function ({ params: { teamId, userId } }) {
return <WebsitesPage teamId={teamId} userId={userId} />;
export default function () {
return <WebsitesPage />;
}
export const metadata: Metadata = {