diff --git a/web/src/components/card/ClassificationCard.tsx b/web/src/components/card/ClassificationCard.tsx
index ffd28a0d0..6581d109a 100644
--- a/web/src/components/card/ClassificationCard.tsx
+++ b/web/src/components/card/ClassificationCard.tsx
@@ -164,7 +164,7 @@ export const ClassificationCard = forwardRef<
)}
>
- {data.name == "unknown"
+ {data.name.toLowerCase() == "unknown"
? t("details.unknown")
: data.name.toLowerCase() == "none"
? t("details.none")
@@ -336,7 +336,7 @@ export function GroupedClassificationCard({
{classifiedEvent?.label && classifiedEvent.label !== "none"
? classifiedEvent.label
- : t(noClassificationLabel)}
+ : t(noClassificationLabel, { ns: i18nLibrary })}
{classifiedEvent?.label &&
classifiedEvent.label !== "none" &&
classifiedEvent.score !== undefined && (