Skip to content

Commit f379ffe

Browse files
committed
fix(accordion-item): fix internal typing
1 parent 1c3478f commit f379ffe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Accordion/AccordionItem.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
// Internal id for controls
2424
const id = "ccs-" + Math.random().toString(36);
2525
26-
/** @type {{ disableItems: import("svelte/store").Writable<boolean>; }} */
26+
/** @type {{ disableItems?: import("svelte/store").Writable<boolean>; }} */
2727
const { disableItems } = getContext("Accordion") ?? {};
2828
2929
$: disabled = disableItems ? $disableItems === true : disabled;

0 commit comments

Comments
 (0)