Skip to content

Commit

Permalink
fix: TextArea auto scroll on focus
Browse files Browse the repository at this point in the history
  • Loading branch information
vadim-kudr committed Nov 26, 2024
1 parent 6d4d00f commit 5d8777b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/plasma-new-hope/src/components/TextArea/TextArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,12 +225,6 @@ export const textAreaRoot = (Root: RootProps<HTMLTextAreaElement, TextAreaRootPr
return;
}

outerRef.current.scrollTo({
top: 0,
left: outerRef.current.offsetLeft,
behavior: 'smooth',
});

outerRef.current.focus();
};

Expand Down

0 comments on commit 5d8777b

Please sign in to comment.