Skip to content

Commit

Permalink
Merge pull request #6479 from marmelab/fix-bulkexportbutton-warning
Browse files Browse the repository at this point in the history
Fix propType warning in BulkExportButton
  • Loading branch information
djhi authored Aug 2, 2021
2 parents 31e58a5 + 3daa36c commit 625592a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ra-ui-materialui/src/button/BulkExportButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ BulkExportButton.propTypes = {
exporter: PropTypes.func,
label: PropTypes.string,
resource: PropTypes.string,
selectedIds: PropTypes.arrayOf(PropTypes.any).isRequired,
selectedIds: PropTypes.arrayOf(PropTypes.any),
icon: PropTypes.element,
};

Expand Down

0 comments on commit 625592a

Please sign in to comment.