From e740f5545056ebe8776a6448922b3ee60684ce0d Mon Sep 17 00:00:00 2001 From: Ven Date: Fri, 23 Dec 2022 03:46:39 +0100 Subject: [PATCH] Fix Vencord --- src/components/PluginSettings/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/PluginSettings/index.tsx b/src/components/PluginSettings/index.tsx index 93bb48971..981891457 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");