We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eb0db8 commit 8184aabCopy full SHA for 8184aab
src/apps/copilots/src/pages/copilot-request-form/index.tsx
@@ -376,7 +376,9 @@ const CopilotRequestForm: FC<{}> = () => {
376
error={formErrors.startDate}
377
dirty
378
minDate={new Date()}
379
- maxDate={new Date(new Date().setFullYear(new Date().getFullYear() + 2))}
+ maxDate={new Date(new Date()
380
+ .setFullYear(new Date()
381
+ .getFullYear() + 2))}
382
minYear={new Date()}
383
/>
384
<p className={styles.formRow}>How many weeks will you need the copilot for?</p>
0 commit comments