fix(RefreshButton): wrong type of websiteId

This commit is contained in:
Alexander Klein 2021-02-16 13:51:14 +01:00
parent 5766d3ac29
commit 002ac397f1

View File

@ -38,7 +38,7 @@ function RefreshButton({ websiteId }) {
} }
RefreshButton.propTypes = { RefreshButton.propTypes = {
websiteId: PropTypes.number, websiteId: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
}; };
export default RefreshButton; export default RefreshButton;