Skip to content

Commit

Permalink
feat: key
Browse files Browse the repository at this point in the history
  • Loading branch information
coderz-w committed Sep 29, 2024
1 parent 22cab09 commit 5d59c41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ const projects = [
icon: '/node.svg',
title: 'Vanilla',
description: 'JavaScript',
link: '/f',
link: '/g',
},
{
icon: '/node.svg',
title: 'Vanilla',
description: 'TypeScript',
link: '/f',
link: '/h',
},
];

Expand Down
4 changes: 2 additions & 2 deletions src/components/extension/tree-view-api/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@ const Folder = forwardRef<HTMLDivElement, FolderProps & React.HTMLAttributes<HTM
>
<div className=" flex items-center justify-start gap-x-1">
{expendedItems?.includes(value)
? openIcon ?? <FolderOpenIcon className="h-3 w-3" />
: closeIcon ?? <FolderIcon className="h-3 w-3" />}
? (openIcon ?? <FolderOpenIcon className="h-3 w-3" />)
: (closeIcon ?? <FolderIcon className="h-3 w-3" />)}
<span>{element}</span>
</div>
<div className=" flex gap-x-1 items-center mr-1">
Expand Down

0 comments on commit 5d59c41

Please sign in to comment.