Remove unused and non unique webpack common style classes find

This commit is contained in:
Nuckyz 2025-07-17 22:06:22 -03:00
parent f6f0624e52
commit 25cd6b7069
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9
2 changed files with 1 additions and 7 deletions

View file

@ -1,8 +1,3 @@
export interface ImageModalClasses {
image: string,
modal: string,
}
export interface ButtonWrapperClasses {
hoverScale: string;
buttonWrapper: string;

View file

@ -17,7 +17,6 @@
*/
import * as t from "@vencord/discord-types";
import { findByPropsLazy, findLazy } from "@webpack";
import { findByPropsLazy } from "@webpack";
export const ModalImageClasses: t.ImageModalClasses = findLazy(m => m.image && m.modal && !m.applicationIcon);
export const ButtonWrapperClasses: t.ButtonWrapperClasses = findByPropsLazy("buttonWrapper", "buttonContent");