From 8aa6dc2414f81083be7724558120113b0bc75311 Mon Sep 17 00:00:00 2001 From: Sqaaakoi Date: Sat, 11 Jan 2025 22:43:45 +1300 Subject: [PATCH] SwitchProfileButton: fix broken eslint locally --- src/plugins/switchProfileButton/index.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/plugins/switchProfileButton/index.tsx b/src/plugins/switchProfileButton/index.tsx index 4e9bd2230..78d2c58f4 100644 --- a/src/plugins/switchProfileButton/index.tsx +++ b/src/plugins/switchProfileButton/index.tsx @@ -1,9 +1,15 @@ +/* + * Vencord, a Discord client mod + * Copyright (c) 2025 Vendicated and contributors + * SPDX-License-Identifier: GPL-3.0-or-later + */ + import ErrorBoundary from "@components/ErrorBoundary"; import { Devs } from "@utils/constants"; import { classes } from "@utils/misc"; import definePlugin from "@utils/types"; import { findByPropsLazy } from "@webpack"; -import { Button, Icons, TooltipContainer, Text } from "@webpack/common"; +import { Button, Icons, Text, TooltipContainer } from "@webpack/common"; import { ReactNode } from "react"; const RoleButtonClasses = findByPropsLazy("button", "buttonInner", "icon", "banner");