Skip to content

Commit

Permalink
fix(frontend): Swap expanded/retracted icons in diff explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
Wuestengecko committed Sep 20, 2024
1 parent 6111060 commit 7999ab4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/DiffExplorer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ export const DiffExplorer = ({
className="flex items-center">
{isExpanded ? (
<>
<SquareChevronRightIcon className="mr-2 dark:text-gray-200" />
<SquareChevronDown className="mr-2 dark:text-gray-200" />
<FolderOpen className="dark:text-gray-200" />
</>
) : (
<>
<SquareChevronDown className="mr-2 dark:text-gray-200" />
<SquareChevronRightIcon className="mr-2 dark:text-gray-200" />
<FolderClosed className="dark:text-gray-200" />
</>
)}
Expand Down

0 comments on commit 7999ab4

Please sign in to comment.