diff options
author | Ven <vendicated@riseup.net> | 2022-10-30 20:45:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-30 20:45:18 +0100 |
commit | 8adf7ca155a7f2b9d59ecfcc98ca47d123a26f59 (patch) | |
tree | 8397630ff18f8fa8952396334b3e4c003786cd07 /src/plugins/pronoundb/components | |
parent | b905743077f5ffdd09c8ff3464ac19f770ae875f (diff) | |
download | Vencord-8adf7ca155a7f2b9d59ecfcc98ca47d123a26f59.tar.gz Vencord-8adf7ca155a7f2b9d59ecfcc98ca47d123a26f59.tar.bz2 Vencord-8adf7ca155a7f2b9d59ecfcc98ca47d123a26f59.zip |
Webpack Warnings & Errors (#178)
* dev: Useful strict Warnings & Errors
* Always log error
* Ignore pending patches with all or whose predicate = false
* Error -> Warn
Diffstat (limited to 'src/plugins/pronoundb/components')
-rw-r--r-- | src/plugins/pronoundb/components/PronounsChatComponent.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/pronoundb/components/PronounsChatComponent.tsx b/src/plugins/pronoundb/components/PronounsChatComponent.tsx index ec4de98..2d20461 100644 --- a/src/plugins/pronoundb/components/PronounsChatComponent.tsx +++ b/src/plugins/pronoundb/components/PronounsChatComponent.tsx @@ -25,7 +25,7 @@ import { UserStore } from "../../../webpack/common"; import { PronounMapping } from "../types"; import { fetchPronouns, formatPronouns } from "../utils"; -const styles: Record<string, string> = lazyWebpack(filters.byProps(["timestampInline"])); +const styles: Record<string, string> = lazyWebpack(filters.byProps("timestampInline")); export default function PronounsChatComponent({ message }: { message: Message; }) { // Don't bother fetching bot or system users |