Fix build.

This commit is contained in:
Mike Cao 2025-08-21 03:06:41 -07:00
parent f7ca583410
commit 00adb00d2d
3 changed files with 16 additions and 5 deletions

View file

@ -24,7 +24,13 @@ export function PixelControls({
<Column gap>
<Row alignItems="center" justifyContent="space-between" gap="3">
{allowFilter ? <WebsiteFilterButton websiteId={websiteId} /> : <div />}
{allowDateFilter && <WebsiteDateFilter websiteId={websiteId} allowCompare={allowCompare} />}
{allowDateFilter && (
<WebsiteDateFilter
websiteId={websiteId}
allowCompare={allowCompare}
showAllTime={false}
/>
)}
{allowDownload && <ExportButton websiteId={websiteId} />}
{allowMonthFilter && <WebsiteMonthSelect websiteId={websiteId} />}
</Row>