We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92889ef commit 1ff2f3cCopy full SHA for 1ff2f3c
packages/core-react/src/components/TextField/index.js
@@ -111,16 +111,16 @@ export default function TextField({
111
</div>
112
113
114
- </div>
115
- <div
116
- className={clsx(
117
- 'ray-form-item__hint',
118
- { 'ray-form-item__hint': hint },
119
- { 'ray-form-item__hint--success': hintSuccess },
120
- { 'ray-form-item__hint--error': hintError }
121
- )}
122
- >
123
- {hint || (hintSuccess || hintError)}
+ <div
+ className={clsx(
+ 'ray-form-item__hint',
+ { 'ray-form-item__hint': hint },
+ { 'ray-form-item__hint--success': hintSuccess },
+ { 'ray-form-item__hint--error': hintError }
+ )}
+ >
+ {hint || (hintSuccess || hintError)}
+ </div>
124
125
126
);
0 commit comments