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