Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
coderz-w committed Jul 17, 2024
1 parent fc7949e commit 806faee
Showing 1 changed file with 2 additions and 2 deletions.
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 @@ -249,8 +249,8 @@ const Folder = forwardRef<HTMLDivElement, FolderProps & React.HTMLAttributes<HTM
}}
>
{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>
</AccordionPrimitive.Trigger>
<AccordionPrimitive.Content className="text-sm data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down relative overflow-hidden h-full">
Expand Down

0 comments on commit 806faee

Please sign in to comment.