diff --git a/frontend/src/components/Sidebar/Sidebar.tsx b/frontend/src/components/Sidebar/Sidebar.tsx index a0f01d53..705d1a99 100644 --- a/frontend/src/components/Sidebar/Sidebar.tsx +++ b/frontend/src/components/Sidebar/Sidebar.tsx @@ -89,6 +89,8 @@ const Sidebar = ({ type, children }: SidebarProps) => { key={path} onClick={() => setSelected(path)} className={styles.icon} + aria-current={path === selected ? 'page' : undefined} + aria-label={caption} to={path} >
{caption}