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

Commit

Permalink
Merge pull request #39 from neerajkumarc/refactor/isloading-condition…
Browse files Browse the repository at this point in the history
…al-rendering

refactor: isloading conditional rendering
  • Loading branch information
MichaelYuhe authored Dec 11, 2023
2 parents 1e075e5 + c25e358 commit f66876d
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 @@ -160,7 +160,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 f66876d

Please sign in to comment.