diff options
author | 2022-09-20 16:19:15 +0700 | |
---|---|---|
committer | 2022-09-20 16:19:15 +0700 | |
commit | c1f308405ae9ce5f712803265b93be537178863d (patch) | |
tree | b02fb0e9fa951945e1344b5fa442f6a0b723dbf7 /source/features/quick-repo-deletion.tsx | |
parent | 03022000ea8567d544dfdf38021a074b03aff1ec (diff) | |
download | refined-github-c1f308405ae9ce5f712803265b93be537178863d.tar.gz refined-github-c1f308405ae9ce5f712803265b93be537178863d.tar.zst refined-github-c1f308405ae9ce5f712803265b93be537178863d.zip |
Meta: Default to `deduplicate: false` (#5999)
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 d2611b6e..76263f11 100644 --- a/source/features/quick-repo-deletion.tsx +++ b/source/features/quick-repo-deletion.tsx @@ -8,7 +8,7 @@ import {assertError} from 'ts-extras'; import * as pageDetect from 'github-url-detection'; import delegate, {DelegateEvent} from 'delegate-it'; -import features from '.'; +import features from '../feature-manager'; import * as api from '../github-helpers/api'; import {getForkedRepo, getRepo} from '../github-helpers'; import pluralize from '../helpers/pluralize'; @@ -164,6 +164,5 @@ void features.add(import.meta.url, { pageDetect.isForkedRepo, ], awaitDomReady: false, - deduplicate: false, init, }); |