refactor: don't pass array to handleBindTextResize (#4826)

This commit is contained in:
Aakansha Doshi 2022-02-21 17:15:29 +05:30 committed by GitHub
parent f224e4d596
commit e203203993
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 53 additions and 55 deletions

View file

@ -602,7 +602,7 @@ export const resizeSingleElement = (
newSize: { width: resizedElement.width, height: resizedElement.height },
});
mutateElement(element, resizedElement);
handleBindTextResize([element], transformHandleDirection);
handleBindTextResize(element, transformHandleDirection);
}
};
@ -742,7 +742,7 @@ const resizeMultipleElements = (
fontSize: updates[index].fontSize,
baseline: updates[index].baseline,
});
handleBindTextResize([element], transformHandleType);
handleBindTextResize(element, transformHandleType);
}
});
}