Daniel Untiedt

Results 3 comments of Daniel Untiedt

This may be a bug in Svelte https://github.com/sveltejs/svelte/issues/3187 An easier workaround is to contain the carousel in a parent div/element: ``` import Carousel from '@beyonk/svelte-carousel' Slide 1 Slide 2 ```

@antony The issue is that Svelte is trying to destroy the parent node of (presumably) the first parent in the component. I've tried adding a parent node to the component...

@johnyvelho make another Svelte component with a `` ? Your repeater: ``` {#each images as image} image {/each} ``` In the new component: ``` ```