turn off build icon spinning. still turns green

This commit is contained in:
mbecker20
2024-05-07 03:45:00 -07:00
parent 0f04a2848a
commit 4909106c3c

View File

@@ -9,7 +9,7 @@ export const IconStrictId = ({ id }: { id: string }) => {
{ refetchInterval: 5000 }
).data?.building;
const className = building
? "w-4 h-4 animate-spin " + fill_color_class_by_intention("Good")
? "w-4 h-4 " + fill_color_class_by_intention("Good")
: "w-4 h-4";
return <Hammer className={className} />;
};