diff --git a/src/common/Checkbox/Checkbox.js b/src/common/Checkbox/Checkbox.js index 705a4fda6..62829cab5 100644 --- a/src/common/Checkbox/Checkbox.js +++ b/src/common/Checkbox/Checkbox.js @@ -5,11 +5,11 @@ const Icon = require('stremio-icons/dom'); const Button = require('../Button'); const styles = require('./styles'); -const Checkbox = React.forwardRef(({ children, ...props }, ref) => { +const Checkbox = React.forwardRef((props, ref) => { return ( ); });