From 41ee8ee9f4c35c6071cf2e3ff91584dafd29851c Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Mon, 8 Jan 2024 14:33:02 +0100 Subject: [PATCH] fix: proptype --- src/components/Interpretations/InterpretationModal/Comment.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/Interpretations/InterpretationModal/Comment.js b/src/components/Interpretations/InterpretationModal/Comment.js index 17778e593..fe78b706c 100644 --- a/src/components/Interpretations/InterpretationModal/Comment.js +++ b/src/components/Interpretations/InterpretationModal/Comment.js @@ -69,8 +69,7 @@ Comment.propTypes = { currentUser: PropTypes.object.isRequired, fetching: PropTypes.bool.isRequired, interpretationId: PropTypes.string.isRequired, - setRemoveInProgress: PropTypes.func.isRequired, - setUpdateInProgress: PropTypes.func.isRequired, + setCommentActionInProgress: PropTypes.func.isRequired, onThreadUpdated: PropTypes.func.isRequired, canComment: PropTypes.bool, }