Skip to content

Commit

Permalink
actually fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
jakehobbs committed Jan 19, 2024
1 parent 29e1f29 commit 6a4ad01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/petition.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const CAMPAIGN_MAILER_API_URL = "https://helptheducks.dxe.io/message/create";

declare global {
interface Window {
dataLayer?: any[];
dataLayer?: unknown[];
}
}

Expand Down Expand Up @@ -160,7 +160,7 @@ export const Petition = () => {
).replace("[Your city if you live in Sonoma County]", city || ""),
});
},
[dirtyFields.message, setValue],
[dirtyFields.message, resetField],
);

return isSubmitted ? (
Expand Down

0 comments on commit 6a4ad01

Please sign in to comment.