diff options
author | 2022-07-08 11:51:32 +0200 | |
---|---|---|
committer | 2022-07-08 16:51:32 +0700 | |
commit | 8bf8cd2f2fe462ca4e632e00e3782b72187408db (patch) | |
tree | 9929999d3c7cfea14c31fdc18806290974ca20ff /source/features/quick-repo-deletion.tsx | |
parent | 92a822ba04a6d32ebb74ef567da4660f8aab583d (diff) | |
download | refined-github-8bf8cd2f2fe462ca4e632e00e3782b72187408db.tar.gz refined-github-8bf8cd2f2fe462ca4e632e00e3782b72187408db.tar.zst refined-github-8bf8cd2f2fe462ca4e632e00e3782b72187408db.zip |
Lint (#5727)
Co-authored-by: Federico Brigante <me@fregante.com>
Co-authored-by: Kid <hi@xuann.wang>
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; } |