repo
code
When creating multiple accounts, need to scroll to the selected account when entering the page.
useEffect(() => {
const timeoutId = setTimeout(() => {
if (refList.current && currentIndex >= 0) {
refList.current?.scrollTo({ index: currentIndex });
}
});
return () => clearTimeout(timeoutId);
}, []);