Skip to content

Commit 93a515d

Browse files
committed
Fix styling of TextArea
1 parent 27abbbd commit 93a515d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/common/src/components/Preference/PreferenceText.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ export const PreferenceText: FunctionComponent<Props> = ({
2828
};
2929

3030
return createElement(isTextArea ? TextArea : Input, {
31-
...props,
3231
style: { width: '9rem' },
3332
value,
3433
placeholder,
3534
onChange: handleChange,
35+
...props,
3636
});
3737
};

0 commit comments

Comments
 (0)