From 74c3930e0a5ed264f330bc32c27116ead1063c5d Mon Sep 17 00:00:00 2001 From: Ven Date: Thu, 6 Oct 2022 00:42:58 +0200 Subject: add eslint config (#53) * eslint * workflow * lint main --- src/utils/modal.tsx | 4 ++-- src/utils/updater.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/utils') diff --git a/src/utils/modal.tsx b/src/utils/modal.tsx index 05baa8e..f59c26c 100644 --- a/src/utils/modal.tsx +++ b/src/utils/modal.tsx @@ -18,11 +18,11 @@ let modalId = 1337; */ export function openModal(Component: React.ComponentType, modalProps: Record) { let key = `Vencord${modalId++}`; - modals.openModal(props => + modals.openModal(props => ( - , { modalKey: key }); + ), { modalKey: key }); return key; }; diff --git a/src/utils/updater.ts b/src/utils/updater.ts index f02af3a..c2c050e 100644 --- a/src/utils/updater.ts +++ b/src/utils/updater.ts @@ -1,7 +1,7 @@ import IpcEvents from "./IpcEvents"; import Logger from "./logger"; -import { IpcRes } from './types'; -import gitHash from 'git-hash'; +import { IpcRes } from "./types"; +import gitHash from "git-hash"; export const UpdateLogger = new Logger("Updater", "white"); export let isOutdated = false; -- cgit