You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just read the Slidy Component, I think this is because Slidy loop slides with hardcoded item.id as key. May be we can add something like keyExtractor as function to extract which key to become id and add fallback to index when there is no id key or keyExtractor not set.
{#eachslidesasitem, i (item.id)}
may be we can change to this
<script>
exportletkeyExtractor= (item)=>item.id
</script>
{#eachslidesasitem, i (keyExtractor(item)||i)}
I think there's 2 options:
id
prop not mandatory. Maybe create default internal id's based on array index (slides is an Array anyway).The text was updated successfully, but these errors were encountered: