Update src/plugins/betterBanReasons/index.tsx

Co-authored-by: vee <vendicated@riseup.net>
This commit is contained in:
Inbestigator 2024-06-27 16:48:16 -07:00 committed by GitHub
parent 719f6c934c
commit f6602fec19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,7 +24,7 @@ function ReasonsComponent() {
type="text"
key={index}
value={reason}
onChange={(v: string) => {
onChange={v => {
reasons[index] = v;
settings.store.reasons = [...reasons];
}}