aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAutumnVN <autumnvnchino@gmail.com>2023-09-29 05:46:33 +0700
committerGitHub <noreply@github.com>2023-09-29 00:46:33 +0200
commit88b06191b926de40dc9f5abfbe83f7a26ab0dac4 (patch)
tree85423bd0d5d441375909393463761b16a07d3f7f /src
parent62277770a8e5eec921fb407863c8c1d1d8e466b5 (diff)
downloadVencord-88b06191b926de40dc9f5abfbe83f7a26ab0dac4.tar.gz
Vencord-88b06191b926de40dc9f5abfbe83f7a26ab0dac4.tar.bz2
Vencord-88b06191b926de40dc9f5abfbe83f7a26ab0dac4.zip
fix modal image + reviewdb bot tag (#1761)
* fix modal image * fix reviewdb bot tag
Diffstat (limited to 'src')
-rw-r--r--src/plugins/reviewDB/components/ReviewComponent.tsx2
-rw-r--r--src/webpack/common/classes.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/reviewDB/components/ReviewComponent.tsx b/src/plugins/reviewDB/components/ReviewComponent.tsx
index 1278a50..9e7df36 100644
--- a/src/plugins/reviewDB/components/ReviewComponent.tsx
+++ b/src/plugins/reviewDB/components/ReviewComponent.tsx
@@ -43,7 +43,7 @@ export default LazyComponent(() => {
p("container", "isHeader"),
p("avatar", "zalgo"),
p("button", "wrapper", "selected"),
- p("botTag")
+ p("botTag", "botTagRegular")
);
const dateFormat = new Intl.DateTimeFormat();
diff --git a/src/webpack/common/classes.ts b/src/webpack/common/classes.ts
index 5c1a676..8bc7640 100644
--- a/src/webpack/common/classes.ts
+++ b/src/webpack/common/classes.ts
@@ -20,5 +20,5 @@ import { findByPropsLazy } from "@webpack";
import * as t from "./types/classes";
-export const ModalImageClasses: t.ImageModalClasses = findByPropsLazy("image", "modal");
+export const ModalImageClasses: t.ImageModalClasses = findByPropsLazy("image", "modal", "responsiveWidthMobile");
export const ButtonWrapperClasses: t.ButtonWrapperClasses = findByPropsLazy("buttonWrapper", "buttonContent");