diff options
author | 2023-02-24 13:46:53 +0800 | |
---|---|---|
committer | 2023-02-24 05:46:53 +0000 | |
commit | 6e1be0b732b272b3bf58c4db0d9d76fb8ed5c11e (patch) | |
tree | 61797333abcef13af8dfd3c361f2e1b5ddb9f571 /source/features/show-names.tsx | |
parent | dd66045e46c27d95dee613d3afcd9ed69065ded4 (diff) | |
download | refined-github-6e1be0b732b272b3bf58c4db0d9d76fb8ed5c11e.tar.gz refined-github-6e1be0b732b272b3bf58c4db0d9d76fb8ed5c11e.tar.zst refined-github-6e1be0b732b272b3bf58c4db0d9d76fb8ed5c11e.zip |
Meta: Update `typed-query-selector` (#6370)
Diffstat (limited to 'source/features/show-names.tsx')
-rw-r--r-- | source/features/show-names.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source/features/show-names.tsx b/source/features/show-names.tsx index 55c19935..2b7ecb91 100644 --- a/source/features/show-names.tsx +++ b/source/features/show-names.tsx @@ -72,9 +72,7 @@ const usernameLinksSelector = [ // On dashboard `.text-bold` is required to not fetch avatars '#dashboard a.text-bold[data-hovercard-type="user"]', - - // Due to: https://github.com/g-plane/typed-query-selector/issues/26 -] as unknown as Array<'a'>; +] as const; function init(signal: AbortSignal): void { observe(usernameLinksSelector, batchUpdateLinks, {signal}); |