Skip to content

Commit

Permalink
chore: add missing semi colons as per lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike-Heneghan committed Oct 16, 2023
1 parent a8de6b8 commit ba12362
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions editor.planx.uk/src/@planx/components/Notice/Public.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ const NoticeComponent: React.FC<Props> = (props) => {
const { trackResetFlow } = useAnalyticsTracking();

const handleNoticeResetClick = () => {
trackResetFlow()
props.resetPreview && props.resetPreview()
}
trackResetFlow();
props.resetPreview && props.resetPreview();
};

return (
<Card handleSubmit={handleSubmit} isValid>
Expand Down

0 comments on commit ba12362

Please sign in to comment.