wip: clerk auth

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-02-07 11:59:40 +01:00
parent bd62127451
commit a9cbff2306
46 changed files with 611 additions and 816 deletions

View File

@@ -4,15 +4,12 @@ import { ListEvents } from './list-events';
interface PageProps {
params: {
organizationId: string;
projectId: string;
};
}
export default function Page({
params: { organizationId, projectId },
}: PageProps) {
export default function Page({ params: { projectId } }: PageProps) {
return (
<PageLayout title="Events" organizationId={organizationId}>
<PageLayout title="Events">
<ListEvents projectId={projectId} />
</PageLayout>
);