diff options
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, { |