From f6602fec19634fa9520581b89066733122cb06c0 Mon Sep 17 00:00:00 2001 From: Inbestigator <119569726+Inbestigator@users.noreply.github.com> Date: Thu, 27 Jun 2024 16:48:16 -0700 Subject: [PATCH] Update src/plugins/betterBanReasons/index.tsx Co-authored-by: vee --- src/plugins/betterBanReasons/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/betterBanReasons/index.tsx b/src/plugins/betterBanReasons/index.tsx index 06e2d56e5..4b805fac1 100644 --- a/src/plugins/betterBanReasons/index.tsx +++ b/src/plugins/betterBanReasons/index.tsx @@ -24,7 +24,7 @@ function ReasonsComponent() { type="text" key={index} value={reason} - onChange={(v: string) => { + onChange={v => { reasons[index] = v; settings.store.reasons = [...reasons]; }}