FIX: Make biome happy

This commit is contained in:
Nicolás Hatcher
2024-10-24 00:47:49 +02:00
committed by Nicolás Hatcher Andrés
parent 3a7aa15347
commit 411d4a3780

View File

@@ -108,7 +108,11 @@ const SheetListMenu = (properties: SheetListMenuProps) => {
/> />
)} )}
{hasColors && <ItemColor style={{ backgroundColor: tab.color }} />} {hasColors && <ItemColor style={{ backgroundColor: tab.color }} />}
<ItemName style={{fontWeight: index === selectedIndex ?"bold": "normal" }}>{tab.name}</ItemName> <ItemName
style={{ fontWeight: index === selectedIndex ? "bold" : "normal" }}
>
{tab.name}
</ItemName>
</StyledMenuItem> </StyledMenuItem>
))} ))}
</StyledMenu> </StyledMenu>