From eb2fc4c715d9c25d1297a7ab8ca8e97154abeede Mon Sep 17 00:00:00 2001 From: orangemug Date: Sat, 18 May 2019 19:02:51 +0100 Subject: [PATCH] Fixed prop-type name. --- src/components/modals/DebugModal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modals/DebugModal.js b/src/components/modals/DebugModal.js index 48697aa2..d1fce448 100644 --- a/src/components/modals/DebugModal.js +++ b/src/components/modals/DebugModal.js @@ -7,7 +7,7 @@ import Modal from './Modal' class DebugModal extends React.Component { static propTypes = { isOpen: PropTypes.bool.isRequired, - onOpenToggle: PropTypes.func.isRequired, + onChangeDebug: PropTypes.func.isRequired, debugOptions: PropTypes.object, }