diff options
author | Vendicated <vendicated@riseup.net> | 2023-10-06 03:17:44 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-10-06 03:17:44 +0200 |
commit | 03b5dc9c27250be09ae1a8c80842edf8cde642d9 (patch) | |
tree | 21877c423996145a47f72a169d501ab400a1e093 /src/plugins/betterRoleDot/index.ts | |
parent | 726a1b5d96eef2f32cba56a45ac51961c7f4ba07 (diff) | |
download | Vencord-03b5dc9c27250be09ae1a8c80842edf8cde642d9.tar.gz Vencord-03b5dc9c27250be09ae1a8c80842edf8cde642d9.tar.bz2 Vencord-03b5dc9c27250be09ae1a8c80842edf8cde642d9.zip |
BetterRoleDot: Fix ci test false positives
Diffstat (limited to 'src/plugins/betterRoleDot/index.ts')
-rw-r--r-- | src/plugins/betterRoleDot/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/betterRoleDot/index.ts b/src/plugins/betterRoleDot/index.ts index e8f69b8..ed121b9 100644 --- a/src/plugins/betterRoleDot/index.ts +++ b/src/plugins/betterRoleDot/index.ts @@ -48,6 +48,7 @@ export default definePlugin({ { find: ".ADD_ROLE_A11Y_LABEL", predicate: () => Settings.plugins.BetterRoleDot.copyRoleColorInProfilePopout && !Settings.plugins.BetterRoleDot.bothStyles, + noWarn: true, replacement: { match: /"dot"===\i/, replace: "true" @@ -56,6 +57,7 @@ export default definePlugin({ { find: ".roleVerifiedIcon", predicate: () => Settings.plugins.BetterRoleDot.copyRoleColorInProfilePopout && !Settings.plugins.BetterRoleDot.bothStyles, + noWarn: true, replacement: { match: /"dot"===\i/, replace: "true" |