From bb9da1c0cad4bf8911f35e32ec0ad91f84547145 Mon Sep 17 00:00:00 2001 From: Daniel Saewitz Date: Mon, 4 Dec 2023 12:07:02 -0500 Subject: [PATCH] Don't show active if pending --- src/components/Row.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Row.tsx b/src/components/Row.tsx index b695875..06dd2b3 100644 --- a/src/components/Row.tsx +++ b/src/components/Row.tsx @@ -79,9 +79,9 @@ const Row = ({ )} */} - {!isActive && isPending &&
} + {isPending &&
} - {isActive &&
} + {!isPending && isActive &&
} {children}