mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-10 18:06:22 +00:00
fix linting
This commit is contained in:
parent
77975c0664
commit
6488bd6396
1 changed files with 5 additions and 5 deletions
|
@ -6,15 +6,15 @@
|
||||||
|
|
||||||
import { definePluginSettings } from "@api/Settings";
|
import { definePluginSettings } from "@api/Settings";
|
||||||
import { disableStyle, enableStyle } from "@api/Styles";
|
import { disableStyle, enableStyle } from "@api/Styles";
|
||||||
|
import ErrorBoundary from "@components/ErrorBoundary";
|
||||||
import { Devs } from "@utils/constants";
|
import { Devs } from "@utils/constants";
|
||||||
|
import { fetchUserProfile } from "@utils/discord";
|
||||||
|
import { Queue } from "@utils/Queue";
|
||||||
import definePlugin, { OptionType } from "@utils/types";
|
import definePlugin, { OptionType } from "@utils/types";
|
||||||
import { RestAPI, UserProfileStore, useEffect, useStateFromStores } from "@webpack/common";
|
import { useEffect, UserProfileStore, useStateFromStores } from "@webpack/common";
|
||||||
import { User } from "discord-types/general";
|
import { User } from "discord-types/general";
|
||||||
|
|
||||||
import style from "./index.css";
|
import style from "./index.css";
|
||||||
import { fetchUserProfile, getCurrentGuild } from "@utils/discord";
|
|
||||||
import ErrorBoundary from "@components/ErrorBoundary";
|
|
||||||
import { Queue } from "@utils/Queue";
|
|
||||||
|
|
||||||
const settings = definePluginSettings({
|
const settings = definePluginSettings({
|
||||||
animate: {
|
animate: {
|
||||||
|
@ -24,7 +24,7 @@ const settings = definePluginSettings({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
let queue = new Queue();
|
const queue = new Queue();
|
||||||
|
|
||||||
|
|
||||||
const useFetchMemberProfile = (userId: string): string => {
|
const useFetchMemberProfile = (userId: string): string => {
|
||||||
|
|
Loading…
Reference in a new issue