Skip to content

Commit 9dfa070

Browse files
committed
fix(TextInputMapper): layout
1 parent 8bb0cdb commit 9dfa070

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/components/fields/TextInputMapper/TextInputMapper.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -255,10 +255,8 @@ function TextInputMapper(
255255
}, [JSON.stringify(mappings)]);
256256

257257
const element = (
258-
<Flow ref={ref} gap="1x">
259-
<Flow gap="1x" onKeyDown={onKeyDown}>
260-
{[...renderedMappings]}
261-
</Flow>
258+
<Flow ref={ref} gap="1x" onKeyDown={onKeyDown}>
259+
{[...renderedMappings]}
262260
{showNewButton ? (
263261
<Space gap={0}>
264262
{/** Hotfix for inconsistent alignment with the label **/}

0 commit comments

Comments
 (0)