aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVen <vendicated@riseup.net>2022-12-23 03:46:39 +0100
committerGitHub <noreply@github.com>2022-12-23 03:46:39 +0100
commite740f5545056ebe8776a6448922b3ee60684ce0d (patch)
treeb5b3c1611084aa3f70f697b9cb4e1e8336d90ce6
parentaff1b68d6b480ecf25d03ee11ee7ca2fb04d945c (diff)
downloadVencord-e740f5545056ebe8776a6448922b3ee60684ce0d.tar.gz
Vencord-e740f5545056ebe8776a6448922b3ee60684ce0d.tar.bz2
Vencord-e740f5545056ebe8776a6448922b3ee60684ce0d.zip
Fix Vencord
-rw-r--r--src/components/PluginSettings/index.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/PluginSettings/index.tsx b/src/components/PluginSettings/index.tsx
index 93bb489..9818914 100644
--- a/src/components/PluginSettings/index.tsx
+++ b/src/components/PluginSettings/index.tsx
@@ -33,10 +33,11 @@ import { openModalLazy } from "@utils/modal";
import { Plugin } from "@utils/types";
import { findByCode, findByPropsLazy } from "@webpack";
import { Alerts, Button, Forms, Margins, Parser, React, Select, Switch, Text, TextInput, Toasts, Tooltip } from "@webpack/common";
-import { startDependenciesRecursive, startPlugin, stopPlugin } from "plugins";
import Plugins from "~plugins";
+import { startDependenciesRecursive, startPlugin, stopPlugin } from "../../plugins";
+
const logger = new Logger("PluginSettings", "#a6d189");
const InputStyles = findByPropsLazy("inputDefault", "inputWrapper");