Skip to content

Commit 7445f5d

Browse files
committed
Drop seemingly useless class
This class being added to the non-hydrated components is actually confusing the hydrate utility and seems to have no actual use - we never call this selector anywhere AFAICT.
1 parent 1944cfa commit 7445f5d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

root/static/scripts/edit/components/FormRowTextList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ export component NonHydratedFormRowTextList(
215215
...props: React.PropsOf<FormRowTextList>
216216
) {
217217
return (
218-
<FormRow className="form-row-text-list-container" rowRef={rowRef}>
218+
<FormRow rowRef={rowRef}>
219219
<FormRowTextList {...props} />
220220
</FormRow>
221221
);

root/static/scripts/edit/components/FormRowTextListSimple.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export component NonHydratedFormRowTextListSimple(
168168
...props: React.PropsOf<FormRowTextListSimple>
169169
) {
170170
return (
171-
<FormRow className="form-row-text-list-container">
171+
<FormRow>
172172
<FormRowTextListSimple {...props} />
173173
</FormRow>
174174
);

0 commit comments

Comments
 (0)