From 83ffa8c6654edf39293e48faef08404121458001 Mon Sep 17 00:00:00 2001 From: Collin Beczak Date: Mon, 2 Feb 2026 14:16:25 -0600 Subject: [PATCH 1/2] fix expected prop types in task history list and image marker layer --- .../EnhancedMap/ImageMarkerLayer/ImageMarkerLayer.jsx | 2 +- src/components/TaskHistoryList/TaskHistoryList.jsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/EnhancedMap/ImageMarkerLayer/ImageMarkerLayer.jsx b/src/components/EnhancedMap/ImageMarkerLayer/ImageMarkerLayer.jsx index 044cf3cb0..196cb2a9d 100644 --- a/src/components/EnhancedMap/ImageMarkerLayer/ImageMarkerLayer.jsx +++ b/src/components/EnhancedMap/ImageMarkerLayer/ImageMarkerLayer.jsx @@ -66,7 +66,7 @@ ImageMarkerLayer.propTypes = { key: PropTypes.string.isRequired, url: PropTypes.string.isRequired, }), - ).isRequired, + ), imageClicked: PropTypes.func.isRequired, markerColor: PropTypes.string, }; diff --git a/src/components/TaskHistoryList/TaskHistoryList.jsx b/src/components/TaskHistoryList/TaskHistoryList.jsx index 9b28861fc..df891aa2b 100644 --- a/src/components/TaskHistoryList/TaskHistoryList.jsx +++ b/src/components/TaskHistoryList/TaskHistoryList.jsx @@ -460,7 +460,7 @@ const CommentEntry = ({ entry, props, index }) => { }; const commentEntry = (entry, props, index) => { - return ; + return ; }; const statusEntry = (entry, props) => { @@ -512,7 +512,7 @@ TaskHistoryList.propTypes = { /** The history to display */ taskHistory: PropTypes.arrayOf( PropTypes.shape({ - actionType: PropTypes.integer, + actionType: PropTypes.number, timestamp: PropTypes.string, comment: PropTypes.string, }), From 511e308eb39dc1973d70eee2f09aabfc694fd892 Mon Sep 17 00:00:00 2001 From: Collin Beczak Date: Mon, 2 Feb 2026 18:45:43 -0600 Subject: [PATCH 2/2] rerun jobs --- src/components/TaskHistoryList/TaskHistoryList.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/TaskHistoryList/TaskHistoryList.jsx b/src/components/TaskHistoryList/TaskHistoryList.jsx index df891aa2b..f164ebfba 100644 --- a/src/components/TaskHistoryList/TaskHistoryList.jsx +++ b/src/components/TaskHistoryList/TaskHistoryList.jsx @@ -509,7 +509,7 @@ const ReviewStatusLabel = (props) => ( ); TaskHistoryList.propTypes = { - /** The history to display */ + /** The history to display in the task history list */ taskHistory: PropTypes.arrayOf( PropTypes.shape({ actionType: PropTypes.number,