Skip to content

Commit

Permalink
πŸ› fix(components/pages/about/inventory): remove redundant role
Browse files Browse the repository at this point in the history
  • Loading branch information
ythecombinator committed Feb 25, 2024
1 parent ddcd39d commit 8f6ba39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pages/about/inventory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Inventory: FunctionComponent<InventoryProps> = ({ title, items }) => {
{title}
</Typography.h2>
<div className="md:col-span-3">
<ul role="list" className="space-y-16">
<ul className="space-y-16">
{items.map((item) => (
<Item key={item.name}>
<Item.Title href={item.url}>{item.name}</Item.Title>
Expand Down

0 comments on commit 8f6ba39

Please sign in to comment.