summaryrefslogtreecommitdiff
path: root/source/features/quick-repo-deletion.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'source/features/quick-repo-deletion.tsx')
-rw-r--r--source/features/quick-repo-deletion.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/features/quick-repo-deletion.tsx b/source/features/quick-repo-deletion.tsx
index 6f037e4e..9ff1dced 100644
--- a/source/features/quick-repo-deletion.tsx
+++ b/source/features/quick-repo-deletion.tsx
@@ -126,7 +126,8 @@ async function init(): Promise<void | false> {
!await elementReady('nav [data-content="Settings"]')
// Only if the repository hasn't been starred
- || looseParseInt(select('.starring-container .social-count')) > 0
+ // TODO [2022-06-01]: Remove `.social-count` (GHE)
+ || looseParseInt(select('.starring-container :is(.Counter, .social-count)')) > 0
) {
return false;
}