diff options
author | Ven <vendicated@riseup.net> | 2022-10-06 00:42:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 00:42:58 +0200 |
commit | 74c3930e0a5ed264f330bc32c27116ead1063c5d (patch) | |
tree | a29ba43787c8cf8bbee648b5b478a8152086f965 /src/utils | |
parent | e563521416052808bcec57057b921f0c0b6ca594 (diff) | |
download | Vencord-74c3930e0a5ed264f330bc32c27116ead1063c5d.tar.gz Vencord-74c3930e0a5ed264f330bc32c27116ead1063c5d.tar.bz2 Vencord-74c3930e0a5ed264f330bc32c27116ead1063c5d.zip |
add eslint config (#53)
* eslint
* workflow
* lint main
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/modal.tsx | 4 | ||||
-rw-r--r-- | src/utils/updater.ts | 4 |
2 files changed, 4 insertions, 4 deletions
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<string, any>) { let key = `Vencord${modalId++}`; - modals.openModal(props => + modals.openModal(props => ( <Modal.ModalRoot {...props} {...modalProps}> <Component /> </Modal.ModalRoot> - , { 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; |