Fixed triggered event lookup. Closes #3742.

This commit is contained in:
Mike Cao 2025-11-14 15:42:23 -08:00
parent cc8254985b
commit cb63e49a9b
4 changed files with 16 additions and 9 deletions

View file

@ -17,9 +17,8 @@ export function GoalAddButton({ websiteId }: { websiteId: string }) {
<Modal>
<Dialog
aria-label="add goal"
variant="modal"
title={formatMessage(labels.goal)}
style={{ minWidth: 800, minHeight: 300 }}
style={{ minWidth: 400, minHeight: 300 }}
>
{({ close }) => <GoalEditForm websiteId={websiteId} onClose={close} />}
</Dialog>