From 8a94a0d591dd7d2b7c25a2295a32f625f1624810 Mon Sep 17 00:00:00 2001 From: Biruk Haileye Tabor Date: Fri, 12 Jun 2026 18:24:42 +0300 Subject: [PATCH] Clear interval on carousel destroy Clear interval on carousel destroy --- src/components/carousel/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/carousel/index.ts b/src/components/carousel/index.ts index eb0e14fd8..36dba408c 100644 --- a/src/components/carousel/index.ts +++ b/src/components/carousel/index.ts @@ -102,6 +102,7 @@ class Carousel implements CarouselInterface { destroy() { if (this._initialized) { + this.pause(); this._initialized = false; } }