fix : forced move classification

This commit is contained in:
GuillaumeSD
2025-05-08 01:38:41 +02:00
parent 4c5f953b7b
commit 5cfac7700c
5 changed files with 11 additions and 12 deletions

View File

@@ -74,11 +74,7 @@ export default function MoveItem({ san, moveClassification, moveIdx }: Props) {
}}
/>
)}
<Typography
color={getMoveColor(moveClassification)}
fontSize="0.9rem"
lineHeight="0.9rem"
>
<Typography color={color} fontSize="0.9rem" lineHeight="0.9rem">
{san}
</Typography>
</Grid>
@@ -99,4 +95,5 @@ const getMoveColor = (moveClassification?: MoveClassification) => {
const moveClassificationsToIgnore: MoveClassification[] = [
MoveClassification.Good,
MoveClassification.Excellent,
MoveClassification.Forced,
];