I am building the onboarding flow for my app where the user needs to input an address. The designers want me to build a custom dropdown to select UK counties.
I implemented the custom dropdown as a reusable element where I put a repeating group into a groupfocus element. I downloaded a list of UK counties and I fill the repeating group by searching for all of the elements of the downloaded list When testing this I found that it takes a few seconds to load whenever I click on the dropdown after page load but every click after that is instantaneous.
I think the delay is caused by the list having to load on the first click. Id rather have the delay on page load then on first click. Is there any way to preload the list when the page is loading?
Thanks for any help in advance!