refactor(mui): use ListItemText slotProps.primary (primaryTypographyProps is deprecated in MUI v7)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-06-06 20:10:02 +02:00
parent 7a21c85cce
commit ab7e1eda41

View File

@@ -104,9 +104,8 @@ export default function SidebarNav({ onNavigate, onLogout }: SidebarNavProps) {
</ListItemIcon> </ListItemIcon>
<ListItemText <ListItemText
primary={item.label} primary={item.label}
primaryTypographyProps={{ slotProps={{
fontSize: ".82rem", primary: { fontSize: ".82rem", fontWeight: "inherit" },
fontWeight: "inherit",
}} }}
/> />
</ListItemButton> </ListItemButton>