Skip to content

Commit

Permalink
make project items tabbable
Browse files Browse the repository at this point in the history
  • Loading branch information
kof committed Jan 25, 2025
1 parent 2043256 commit 57090cb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apps/builder/app/dashboard/projects/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,11 @@ export const Projects = ({
paddingBottom: theme.spacing[13],
}}
>
{projects.map((project, index) => {
{projects.map((project) => {
return (
<ListItem index={index} key={project.id} asChild>
<ListItem index={0} key={project.id} asChild>
<ProjectCard
project={project}
key={project.id}
hasProPlan={hasProPlan}
publisherHost={publisherHost}
/>
Expand Down

0 comments on commit 57090cb

Please sign in to comment.