diff options
author | Ven <vendicated@riseup.net> | 2022-11-14 16:22:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 16:22:50 +0100 |
commit | a96f8a89f36ccb980334da2274385373aa3ffb24 (patch) | |
tree | e520f3be75eb2bbd9f3c4d3427f16861b8d7ab6c /src/components/PluginSettings/index.tsx | |
parent | 4642b54260a2258d8d0925dcfb5c6934fcf10835 (diff) | |
download | Vencord-a96f8a89f36ccb980334da2274385373aa3ffb24.tar.gz Vencord-a96f8a89f36ccb980334da2274385373aa3ffb24.tar.bz2 Vencord-a96f8a89f36ccb980334da2274385373aa3ffb24.zip |
MessageLogger: fixes + ignoreSelf & ignoreBots option (#213)
Diffstat (limited to 'src/components/PluginSettings/index.tsx')
-rw-r--r-- | src/components/PluginSettings/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/PluginSettings/index.tsx b/src/components/PluginSettings/index.tsx index fef8c30..9600ef7 100644 --- a/src/components/PluginSettings/index.tsx +++ b/src/components/PluginSettings/index.tsx @@ -22,7 +22,7 @@ import { showNotice } from "../../api/Notices"; import { Settings, useSettings } from "../../api/settings"; import { startDependenciesRecursive, startPlugin, stopPlugin } from "../../plugins"; import { ChangeList } from "../../utils/ChangeList"; -import Logger from "../../utils/logger"; +import Logger from "../../utils/Logger"; import { classes, LazyComponent, lazyWebpack } from "../../utils/misc"; import { openModalLazy } from "../../utils/modal"; import { Plugin } from "../../utils/types"; |