diff options
author | Ven <vendicated@riseup.net> | 2022-10-29 20:27:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-29 20:27:48 +0200 |
commit | 93859883c12cbc39e0142840b633fc288e9ecc75 (patch) | |
tree | c18ea313c410f53ae53488b4e27a71af105d902e /src/components | |
parent | 37105ac416545f1b26f885c3c6c7b98bdce9e2a6 (diff) | |
download | Vencord-93859883c12cbc39e0142840b633fc288e9ecc75.tar.gz Vencord-93859883c12cbc39e0142840b633fc288e9ecc75.tar.bz2 Vencord-93859883c12cbc39e0142840b633fc288e9ecc75.zip |
build: inject createElement alias (#176)
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/Settings.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/Settings.tsx b/src/components/Settings.tsx index e720c6f..b4504a2 100644 --- a/src/components/Settings.tsx +++ b/src/components/Settings.tsx @@ -23,7 +23,6 @@ import { useAwaiter } from "../utils/misc"; import { Alerts, Button, Forms, Margins, Parser, React, Switch } from "../webpack/common"; import ErrorBoundary from "./ErrorBoundary"; import { Flex } from "./Flex"; -import { launchMonacoEditor } from "./Monaco"; export default ErrorBoundary.wrap(function Settings() { const [settingsDir, , settingsDirPending] = useAwaiter(() => VencordNative.ipc.invoke<string>(IpcEvents.GET_SETTINGS_DIR), "Loading..."); @@ -85,7 +84,7 @@ export default ErrorBoundary.wrap(function Settings() { </Flex>} {IS_WEB && <Button - onClick={launchMonacoEditor} + onClick={() => require("./Monaco").launchMonacoEditor()} size={Button.Sizes.SMALL} disabled={settingsDir === "Loading..."} > |