chore(react/settings): set 100% width for textarea

This commit is contained in:
Elian Doran 2025-08-19 17:39:41 +03:00
parent cddf9f0242
commit f00b8e9522
No known key found for this signature in database

View File

@ -10,6 +10,7 @@ export default function FormTextArea({ onBlur, rows, currentValue }: FormTextAre
onBlur={(e) => {
onBlur?.(e.currentTarget.value);
}}
style={{ width: "100%" }}
>{currentValue}</textarea>
)
}