15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
import { useEffect, useRef } from 'react';
|
|
import { isDefined } from 'twenty-ui';
|
|
|
|
export const useInputFocusWithoutScrollOnMount = () => {
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
|
|
|
useEffect(() => {
|
|
if (isDefined(inputRef.current)) {
|
|
inputRef.current.focus({ preventScroll: true });
|
|
}
|
|
});
|
|
|
|
return { inputRef };
|
|
};
|