Welcome, {profile?.displayName || 'Traveler'}!
Select your home country to get started
{ open = true; }} oninput={() => { open = true; selectedCountry = ''; }} onkeydown={handleKeydown} class="search-input" /> {#if open}
{#each filtered as country}
select(country)} onkeydown={(e) => { if (e.key === 'Enter') select(country); }} tabindex="0" > {country}
{/each} {#if filtered.length === 0}
No countries found
{/if}
{/if}
Continue