diff --git a/src/VencordNative.ts b/src/VencordNative.ts index c4979704c..9ec7f7952 100644 --- a/src/VencordNative.ts +++ b/src/VencordNative.ts @@ -7,8 +7,7 @@ import { IpcEvents } from "@utils/IpcEvents"; import { IpcRes } from "@utils/types"; import { ipcRenderer } from "electron"; - -import type { ThemeHeader } from "./main/themes"; +import type { ThemeHeader } from "main/themes"; function invoke(event: IpcEvents, ...args: any[]) { return ipcRenderer.invoke(event, ...args) as Promise; diff --git a/src/components/VencordSettings/ThemesTab.tsx b/src/components/VencordSettings/ThemesTab.tsx index 141696198..35e82b2db 100644 --- a/src/components/VencordSettings/ThemesTab.tsx +++ b/src/components/VencordSettings/ThemesTab.tsx @@ -26,11 +26,11 @@ import { showItemInFolder } from "@utils/native"; import { useAwaiter } from "@utils/react"; import { findByCodeLazy, findByPropsLazy, findLazy } from "@webpack"; import { Button, Card, FluxDispatcher, Forms, React, showToast, TabBar, TextArea, useEffect, useRef, useState } from "@webpack/common"; +import type { ThemeHeader } from "main/themes"; import { UserThemeHeader } from "main/themes/bd"; import type { ComponentType, Ref, SyntheticEvent } from "react"; import { UserstyleHeader } from "usercss-meta"; -import type { ThemeHeader } from "../../main/themes"; import { AddonCard } from "./AddonCard"; import { SettingsTab, wrapTab } from "./shared";