diff options
author | 2022-09-09 22:01:54 +0700 | |
---|---|---|
committer | 2022-09-09 22:01:54 +0700 | |
commit | aaca03e354866411b60e79edadb1f63d8af27f02 (patch) | |
tree | 0d669628437086c8ce25f147425888fa4ed91f8c /source/features/bypass-checks.tsx | |
parent | dbbd437efdcb7df7241f5d512bae9c225c8aa063 (diff) | |
download | refined-github-aaca03e354866411b60e79edadb1f63d8af27f02.tar.gz refined-github-aaca03e354866411b60e79edadb1f63d8af27f02.tar.zst refined-github-aaca03e354866411b60e79edadb1f63d8af27f02.zip |
Update dependencies (#5955)
Diffstat (limited to 'source/features/bypass-checks.tsx')
-rw-r--r-- | source/features/bypass-checks.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/source/features/bypass-checks.tsx b/source/features/bypass-checks.tsx index 44a59d05..292b71b5 100644 --- a/source/features/bypass-checks.tsx +++ b/source/features/bypass-checks.tsx @@ -34,8 +34,12 @@ function init(signal: AbortSignal): void { a:not([href="/apps/github-actions"]) ~ div a.status-actions:is( [href^="${location.origin}"], [href^="/"] - ) - `, bypass, {signal}); + )`, + + /* @ts-expect-error https://github.com/g-plane/typed-query-selector/issues/26 */ + bypass, + {signal}, + ); } void features.add(import.meta.url, { |