Skip to content

Commit 3980b9a

Browse files
committedJun 20, 2023
removed unwanted declarations
1 parent 5d68f4b commit 3980b9a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎react/components/DateField/DateField.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ DateField.propTypes = {
8181
label: PropTypes.string.isRequired,
8282
value: PropTypes.object,
8383
handleDateChange: PropTypes.func.isRequired,
84-
disabled:PropTypes.bool.isRequired
84+
disabled:PropTypes.bool
8585
};
8686

8787
export default DateField;

‎react/components/DateTimeField/DateTimeField.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ DateTimeField.propTypes = {
7171
dateTimeValue: PropTypes.object,
7272
handleDateTimeChange: PropTypes.func.isRequired,
7373
label: PropTypes.string.isRequired,
74-
disabled:PropTypes.bool.isRequired
74+
disabled:PropTypes.bool
7575
};
7676

7777
export default DateTimeField;

0 commit comments

Comments
 (0)
Please sign in to comment.