diff --git a/plugins/talk-plugin-toxic-comments/client/components/ToxicDetail.js b/plugins/talk-plugin-toxic-comments/client/components/ToxicDetail.js index 9530188f2..e1cab57c4 100644 --- a/plugins/talk-plugin-toxic-comments/client/components/ToxicDetail.js +++ b/plugins/talk-plugin-toxic-comments/client/components/ToxicDetail.js @@ -11,10 +11,10 @@ const getInfo = (toxicity, actions) => { let text = t('talk-plugin-toxic-comments.unlikely'); if (toxicity > 0.8) { text = t('talk-plugin-toxic-comments.highly_likely'); - } else if (toxicity >= 0.5) { - text = t('talk-plugin-toxic-comments.possibly'); } else if (toxicity >= 0.7) { text = t('talk-plugin-toxic-comments.likely'); + } else if (toxicity >= 0.5) { + text = t('talk-plugin-toxic-comments.possibly'); } return (