Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Fix usage of PropTypes.oneOfType #1071

Merged
merged 1 commit into from Nov 26, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -22,7 +22,7 @@ ScheduledTimeInfoItem.propTypes = {
planId: PropTypes.string,
migrationStarting: PropTypes.bool,
showScheduledTime: PropTypes.bool,
migrationScheduled: PropTypes.oneOfType(PropTypes.number, PropTypes.string)
migrationScheduled: PropTypes.oneOfType([PropTypes.number, PropTypes.string])
};

export default ScheduledTimeInfoItem;