diff --git a/src/components/NavItems/Assistant/AssistantCheckResults/AssistantCheckStatus.jsx b/src/components/NavItems/Assistant/AssistantCheckResults/AssistantCheckStatus.jsx index b1978e721..39909d67b 100644 --- a/src/components/NavItems/Assistant/AssistantCheckResults/AssistantCheckStatus.jsx +++ b/src/components/NavItems/Assistant/AssistantCheckResults/AssistantCheckStatus.jsx @@ -36,17 +36,17 @@ const AssistantCheckStatus = () => { const newsFramingTitle = "news topic"; const newsFramingFailState = useSelector( - (state) => state.assistant.newsFramingFail + (state) => state.assistant.newsFramingFail, ); const newsGenreTitle = "news genre"; const newsGenreFailState = useSelector( - (state) => state.assistant.newsGenreFail + (state) => state.assistant.newsGenreFail, ); const persuasionTitle = "persuasion"; const persuasionFailState = useSelector( - (state) => state.assistant.persuasionFail + (state) => state.assistant.persuasionFail, ); const failStates = [ diff --git a/src/components/NavItems/tools/SyntheticImageDetection/syntheticImageDetectionResults.jsx b/src/components/NavItems/tools/SyntheticImageDetection/syntheticImageDetectionResults.jsx index 7088fa224..1dd0e2a47 100644 --- a/src/components/NavItems/tools/SyntheticImageDetection/syntheticImageDetectionResults.jsx +++ b/src/components/NavItems/tools/SyntheticImageDetection/syntheticImageDetectionResults.jsx @@ -443,18 +443,20 @@ const SyntheticImageDetectionResults = ({ ref={gaugeChartRef} p={2} > - {maxScore > DETECTION_THRESHOLDS.THRESHOLD_2 && ( - - {keyword( - "synthetic_image_detection_generic_detection_text", - )} - - )} + + {maxScore > DETECTION_THRESHOLDS.THRESHOLD_2 + ? keyword( + "synthetic_image_detection_generic_detection_text", + ) + : keyword( + "synthetic_image_detection_generic_inconclusive_text", + )} + {nd && nd.similar_media && nd.similar_media.length > 0 && (