Teams context settings.

This commit is contained in:
Mike Cao 2024-02-02 17:49:17 -08:00
parent 4429198397
commit 8f853ddb97
77 changed files with 317 additions and 272 deletions

View file

@ -11,7 +11,7 @@ const defaultParameters = {
parameters: { fields: [], filters: [] },
};
export default function EventDataReport({ reportId }: { reportId: string }) {
export default function EventDataReport({ reportId }: { reportId?: string }) {
return (
<Report reportId={reportId} defaultParameters={defaultParameters}>
<ReportHeader icon={<Nodes />} />

View file

@ -0,0 +1,10 @@
import EventDataReport from './EventDataReport';
import { Metadata } from 'next';
export default function FunnelReportPage() {
return <EventDataReport />;
}
export const metadata: Metadata = {
title: 'Funnel Report | Umami',
};