Skip to content

Commit 4eb76ab

Browse files
committed
Remove extra semi-colon
1 parent e516beb commit 4eb76ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export function getArrayFormRow(args) {
181181
if (i === data.length - 1)
182182
nextArgs.onMoveDown = null;
183183
else
184-
nextArgs.onMoveDown = (e) => onMove(name + '-' + i, name + '-' + (i + 1));;
184+
nextArgs.onMoveDown = (e) => onMove(name + '-' + i, name + '-' + (i + 1));
185185

186186
if (type === 'array') {
187187
groups.push(getArrayFormRow(nextArgs));

0 commit comments

Comments
 (0)