fix bad port

This commit is contained in:
Cory LaViska
2023-10-25 13:38:21 -04:00
parent 71e5b10f3b
commit 38302a7c28

View File

@@ -236,7 +236,7 @@ export default class WaCarousel extends WebAwesomeElement {
}
private isCarouselItem(node: Node): node is WaCarouselItem {
return node instanceof Element && node.tagName.toLowerCase() === 'sl-carousel-item';
return node instanceof Element && node.tagName.toLowerCase() === 'wa-carousel-item';
}
private handleSlotChange = (mutations: MutationRecord[]) => {