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>
<ListItemText
primary={item.label}
primaryTypographyProps={{
fontSize: ".82rem",
fontWeight: "inherit",
slotProps={{
primary: { fontSize: ".82rem", fontWeight: "inherit" },
}}
/>
</ListItemButton>