diff --git a/apps/web/app/components/tags.tsx b/apps/web/app/components/tags.tsx
index 2fec13fe4..8957287d4 100644
--- a/apps/web/app/components/tags.tsx
+++ b/apps/web/app/components/tags.tsx
@@ -6,36 +6,27 @@ export default function Tags({ tags }: { tags: string[] }) {
if (!tags || !tags.length) return null;
return (
-
-
- {tags.slice(0, 3).map((item) => (
-
- {item}
-
- ))}
-
- {tags.length > 3 && (
-
- , and{" "}
-
-
- {tags.length - 3} more
-
-
-
- )}
-
-
-
-
- {tags.length} flavor note{tags.length !== 1 ? "s" : ""}
-
-
-
+
+ {tags.slice(0, 3).map((item) => (
+
+ {item}
+
+ ))}
+
+ {tags.length > 3 && (
+
+ , and{" "}
+
+
+ {tags.length - 3} more
+
+
+
+ )}
);
}