{#if geographicList?.length !== 0}
The ETF is build on top of {geographicList?.length} regions:
{#each (showFullStats ? geographicList : geographicList?.slice(0,3)) as item,index}
Country Logo
{item?.country?.length > charNumber ? formatString(item?.country)?.slice(0,charNumber) + "..." : formatString(item?.country)} {item?.weightPercentage <= 0.01 ? "< 0.01%" : item?.weightPercentage?.toFixed(2)+'%'}
{/each}
{#if geographicList?.length > 2} {/if} {:else}

No data available

{/if}