diff options
Diffstat (limited to 'src/preload.ts')
-rw-r--r-- | src/preload.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/preload.ts b/src/preload.ts index fccc024..dcf2554 100644 --- a/src/preload.ts +++ b/src/preload.ts @@ -16,12 +16,12 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ +import { debounce } from "@utils/debounce"; +import IpcEvents from "@utils/IpcEvents"; import electron, { contextBridge, ipcRenderer, webFrame } from "electron"; import { readFileSync } from "fs"; import { join } from "path"; -import { debounce } from "./utils/debounce"; -import IpcEvents from "./utils/IpcEvents"; import VencordNative from "./VencordNative"; if (electron.desktopCapturer === void 0) { |