Skip to content

Commit 5748a00

Browse files
committed
return an empty string if no proposed deadline
1 parent 6bbd893 commit 5748a00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/AdditionalInfo/AdditionalInfo.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const AdditionalInfo = ({ defaultRequiredDate, updateRequestForm }) => {
7474
label='Proposals can be submitted at any time.'
7575
onChange={() => {
7676
setShowProposalDate(!showProposalDate)
77-
if (showProposalDate) handleChange(null)
77+
if (showProposalDate) handleChange('')
7878
}}
7979
/>
8080
</Form.Group>

0 commit comments

Comments
 (0)