Skip to content

Commit

Permalink
chore: Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tjtanjin committed Dec 17, 2024
1 parent 2fb225e commit 767314b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/hooks/internal/useTextAreaInternal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ export const useTextAreaInternal = () => {
/**
* Blurs on text area.
*/
const blurTextArea = useCallback(() => {
if (inputRef.current) {
inputRef.current.blur();
}
}, []);
const blurTextArea = useCallback(() => {
if (inputRef.current) {
inputRef.current.blur();
}
}, []);
/**
* Retrieves text area value.
Expand Down

0 comments on commit 767314b

Please sign in to comment.