Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mnajdova committed Jun 22, 2022
1 parent 6df59dd commit f7fba49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mui-base/src/TextareaAutosize/TextareaAutosize.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const TextareaAutosize = React.forwardRef(function TextareaAutosize(props, ref)
const syncHeight = React.useCallback(() => {
const newState = getUpdatedState();

if (isEmpty(newState)) {
if (isEmpty(newState)) {
return;
}

Expand All @@ -138,7 +138,7 @@ const TextareaAutosize = React.forwardRef(function TextareaAutosize(props, ref)
const syncHeightWithFlushSycn = () => {
const newState = getUpdatedState();

if (isEmpty(newState)) {
if (isEmpty(newState)) {
return;
}

Expand Down

0 comments on commit f7fba49

Please sign in to comment.