{CATEGORY_ORDER.flatMap((category) => {
const categoryKey = category as keyof StackState;
@@ -915,9 +961,14 @@ const StackArchitect = () => {
.map((tech) => (
- {tech.icon} {tech.name}
+
+ {tech.name}
));
}
@@ -938,9 +989,14 @@ const StackArchitect = () => {
return (
- {tech.icon} {tech.name}
+
+ {tech.name}
);
})}
@@ -1018,7 +1074,7 @@ const StackArchitect = () => {
className={`list-inside list-disc space-y-1 text-xs ${notesInfo.hasIssue ? "text-orange-700 dark:text-orange-400" : "text-blue-700 dark:text-blue-400"}`}
>
{notesInfo.notes.map((note, index) => (
- // biome-ignore lint/suspicious/noArrayIndexKey: Static notes per render
+ // biome-ignore lint/suspicious/noArrayIndexKey:
{note}
))}
@@ -1086,9 +1142,11 @@ const StackArchitect = () => {