Skip to content

Commit 7d04f92

Browse files
committed
Revert "Fix Accordion not reacting to checked changing (#261)"
This reverts commit 521ef71.
1 parent 6654629 commit 7d04f92

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/lib/components/Accordion.svelte

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@
2929
}
3030
}
3131
32-
// Sync with exported prop
33-
$: if (inputEl && contentEl && inputEl.checked !== checked) {
34-
inputEl.checked = checked;
35-
toggleContent();
36-
}
37-
3832
function onTransitionEnd() {
3933
if (!inputEl.checked) {
4034
contentEl.style.display = 'none';

0 commit comments

Comments
 (0)