Breakdown report.

This commit is contained in:
Mike Cao 2025-06-10 20:59:27 -07:00
parent 79ea9974b7
commit e3cc19638c
21 changed files with 495 additions and 456 deletions

View file

@ -24,7 +24,7 @@ export function GoalsPage({ websiteId }: { websiteId: string }) {
<Grid columns="1fr 1fr" gap>
{result?.data?.map((report: any) => (
<Panel key={report.id}>
<Goal {...report} reportId={report.id} startDate={startDate} endDate={endDate} />
<Goal {...report} startDate={startDate} endDate={endDate} />
</Panel>
))}
</Grid>