1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-11 02:16:23 +00:00

fix linter

This commit is contained in:
nin0dev 2024-08-03 08:15:11 -04:00
parent cd917a4ba2
commit 74d63a2261

View file

@ -7,7 +7,6 @@
import { CheckedTextInput } from "@components/CheckedTextInput"; import { CheckedTextInput } from "@components/CheckedTextInput";
import { Margins } from "@utils/margins"; import { Margins } from "@utils/margins";
import { identity } from "@utils/misc"; import { identity } from "@utils/misc";
import { findByPropsLazy } from "@webpack";
import { Card, Forms, PresenceStore, React, Select, SnowflakeUtils, Switch, TextInput, UserStore } from "@webpack/common"; import { Card, Forms, PresenceStore, React, Select, SnowflakeUtils, Switch, TextInput, UserStore } from "@webpack/common";
import { Activity, ActivityType, AppIdSetting, makeEmptyAppId } from "."; import { Activity, ActivityType, AppIdSetting, makeEmptyAppId } from ".";
@ -120,7 +119,7 @@ export function ReplaceSettings({ appIds, update, save }: SettingsProps) {
<Forms.FormTitle className={`${Margins.top8} ${Margins.bottom8}`}>Stream URL (must be YouTube or Twitch)</Forms.FormTitle> <Forms.FormTitle className={`${Margins.top8} ${Margins.bottom8}`}>Stream URL (must be YouTube or Twitch)</Forms.FormTitle>
<CheckedTextInput <CheckedTextInput
value={setting.newStreamUrl} value={setting.newStreamUrl}
onChange={async (v) => { onChange={async v => {
onChange(v, i, "newStreamUrl"); onChange(v, i, "newStreamUrl");
}} }}
validate={v => { validate={v => {