Skip to content

Commit d2e6ff3

Browse files
committed
fix(docs): accessibility score
1 parent f822018 commit d2e6ff3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/docs/src/components/footer/footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export const FooterSocialLinks = component$(() => {
9090
];
9191

9292
return (
93-
<div class="flex gap-4 mt-4">
93+
<ul class="flex gap-4 mt-4">
9494
{socialLinks.map(({ title, href, Logo }) => (
9595
<li key={title} class="list-none">
9696
<a href={href} target="_blank" title={title}>
@@ -100,6 +100,6 @@ export const FooterSocialLinks = component$(() => {
100100
</a>
101101
</li>
102102
))}
103-
</div>
103+
</ul>
104104
);
105105
});

0 commit comments

Comments
 (0)