diff options
Diffstat (limited to 'source/features/clean-conversation-filters.tsx')
-rw-r--r-- | source/features/clean-conversation-filters.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/features/clean-conversation-filters.tsx b/source/features/clean-conversation-filters.tsx index 9134390a..b7e4e0d7 100644 --- a/source/features/clean-conversation-filters.tsx +++ b/source/features/clean-conversation-filters.tsx @@ -5,11 +5,11 @@ import * as pageDetect from 'github-url-detection'; import features from '.'; import * as api from '../github-helpers/api'; -import {getRepo, getRepoGQL} from '../github-helpers'; +import {getRepo} from '../github-helpers'; const hasAnyProjects = cache.function(async (): Promise<boolean> => { const {repository, organization} = await api.v4(` - repository(${getRepoGQL()}) { + repository() { projects { totalCount } } organization(login: "${getRepo()!.owner}") { |