diff --git a/common/app/routes/Challenges/Completion-Modal.jsx b/common/app/routes/Challenges/Completion-Modal.jsx index 27a5cab7e2..49c986f0db 100644 --- a/common/app/routes/Challenges/Completion-Modal.jsx +++ b/common/app/routes/Challenges/Completion-Modal.jsx @@ -28,7 +28,7 @@ const mapDispatchToProps = function(dispatch) { const dispatchers = { close: () => dispatch(closeChallengeModal()), handleKeypress: (e) => { - if (e.keyCode === 13 && (e.ctrlKey || e.meta)) { + if (e.keyCode === 13 && (e.ctrlKey || e.metaKey)) { dispatch(submitChallenge()); } },