Skip to content

Commit d5ac2ca

Browse files
committed
Adds ARIA label to settings navigation
1 parent 23ccb71 commit d5ac2ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/js/layouts/settings/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default function SettingsLayout({ children }: PropsWithChildren) {
5050

5151
<div className="flex flex-col lg:flex-row lg:space-x-12">
5252
<aside className="w-full max-w-xl lg:w-48">
53-
<nav className="flex flex-col space-y-1 space-x-0">
53+
<nav className="flex flex-col space-y-1 space-x-0" aria-label="Settings">
5454
{sidebarNavItems.map((item, index) => (
5555
<Button
5656
key={`${typeof item.href === 'string' ? item.href : item.href.url}-${index}`}

0 commit comments

Comments
 (0)