Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Commit

Permalink
refactor:isloading conditional rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajkumarc committed Dec 10, 2023
1 parent 671e79e commit c25e358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/popup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const Popup = () => {
focus-visible:outline-2 focus-visible:outline-offset-2"
onClick={getAllTabsInfo}
>
{isLoading ? <LoadingSpinner /> : null}
{isLoading && <LoadingSpinner />}
Group Existing Tabs
</button>

Expand Down

0 comments on commit c25e358

Please sign in to comment.