fix(ui): update title attribute for info icon in AppBar component

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2025-06-13 17:36:38 -04:00 committed by Joe Stump
parent c30782e99d
commit 961860648d
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -50,7 +50,7 @@ const AboutMenuItem = forwardRef(({ onClick, ...rest }, ref) => {
<>
<MenuItem ref={ref} onClick={handleOpen} className={classes.root}>
<ListItemIcon className={classes.icon}>
<MdInfo titleAccess={label} size={24} />
<MdInfo title={label} size={24} />
</ListItemIcon>
{label}
</MenuItem>