Skip to content

Commit

Permalink
Fixed translation
Browse files Browse the repository at this point in the history
  • Loading branch information
Sallaa committed Aug 9, 2024
1 parent 0afde0c commit fd102cc
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,12 +253,14 @@ const SyntheticImageDetectionResults = ({
return floor === 0 ? 1 : floor;
};
const [detailsPanelMessage, setDetailsPanelMessage] = useState(
"synthetic_image_detection_additional_results_hide",
"synthetic_image_detection_additional_results",
);
const handleDetailsChange = () => {
detailsPanelMessage === "synthetic_image_detection_additional_results_hide"
? setDetailsPanelMessage("synthetic_image_detection_additional_results")
: setDetailsPanelMessage("synthetic_image_detection_additional_results");
: setDetailsPanelMessage(
"synthetic_image_detection_additional_results_hide",
);
};

const [nddDetailsPanelMessage, setNddDetailsPanelMessage] = useState(
Expand Down

0 comments on commit fd102cc

Please sign in to comment.