awuuu0716
Results
1
comments of
awuuu0716
I have the same issue too, this is my solution: ```ts const ref = useRef(null); { setTimeout(() => { if (!ref.current) return; const end = ref.current.value.length; ref.current.setSelectionRange(end, end); ref.current.focus(); },...