Skip to content

Commit

Permalink
Fix: Bug of having error on unmounting the component with textarea op…
Browse files Browse the repository at this point in the history
…ened (#322)
  • Loading branch information
AhmeeedMostafa committed Apr 3, 2023
1 parent 7113bf4 commit 9148df4
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -25,7 +25,10 @@ const deactivateTextChange = () => {
}
if (transformer) {
transformer.show();
transformer.forceUpdate();
/**
* Disabled because of bug (#322)
*/
// transformer.forceUpdate();
}
if (typeof disableTextEditCallback === 'function') {
disableTextEditCallback();
Expand Down

0 comments on commit 9148df4

Please sign in to comment.