Fixed build. Updated packages.

This commit is contained in:
Mike Cao 2025-04-29 13:42:36 -07:00
parent 73b45a9f5e
commit 848f8d3ecf
4 changed files with 552 additions and 117 deletions

View file

@ -1,3 +1,4 @@
'use client';
import { Button } from '@umami/react-zen';
import Link from 'next/link';
import Script from 'next/script';

View file

@ -21,7 +21,7 @@ export function TrackingCode({ websiteId, hostUrl }: { websiteId: string; hostUr
return (
<>
<p>{formatMessage(messages.trackingCode)}</p>
<TextArea rows={4} value={code} readOnly allowCopy />
<TextArea rows={4} value={code} isReadOnly allowCopy />
</>
);
}