Skip to content

Commit

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

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

0 comments on commit f873366

Please sign in to comment.