Skip to content

Commit ee73fed

Browse files
authored
Prevent missing itemHeight prop warning
1 parent 3798de2 commit ee73fed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

VirtualList.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// props
55
export let items;
66
export let height = '100%';
7-
export let itemHeight;
7+
export let itemHeight = undefined;
88
99
let foo;
1010

0 commit comments

Comments
 (0)