Skip to content

Commit 8184aab

Browse files
committed
fix linting error
1 parent 9eb0db8 commit 8184aab

File tree

1 file changed

+3
-1
lines changed
  • src/apps/copilots/src/pages/copilot-request-form

1 file changed

+3
-1
lines changed

src/apps/copilots/src/pages/copilot-request-form/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,9 @@ const CopilotRequestForm: FC<{}> = () => {
376376
error={formErrors.startDate}
377377
dirty
378378
minDate={new Date()}
379-
maxDate={new Date(new Date().setFullYear(new Date().getFullYear() + 2))}
379+
maxDate={new Date(new Date()
380+
.setFullYear(new Date()
381+
.getFullYear() + 2))}
380382
minYear={new Date()}
381383
/>
382384
<p className={styles.formRow}>How many weeks will you need the copilot for?</p>

0 commit comments

Comments
 (0)