Skip to content

Commit

Permalink
Don't show active if pending
Browse files Browse the repository at this point in the history
  • Loading branch information
switz committed Dec 4, 2023
1 parent f873366 commit bb9da1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ const Row = ({
<Spinner />
</div>
)} */}
{!isActive && isPending && <div className="w-2 animate-pulse bg-black/30" />}
{isPending && <div className="w-2 animate-pulse bg-black/30" />}

{isActive && <div className="w-2 bg-black/75" />}
{!isPending && isActive && <div className="w-2 bg-black/75" />}
<Flex className="w-full flex-1 items-center justify-between p-1 leading-tight">
{children}
</Flex>
Expand Down

0 comments on commit bb9da1c

Please sign in to comment.