@homebound/beam 2.369.4 → 2.369.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -31,7 +31,6 @@ function VirtualizedOptions(props) {
|
|
|
31
31
|
// otherwise render just 1 row. A better way to do this would be to jest.mock
|
|
32
32
|
// out Virtuoso with an impl that just rendered everything, but doing this for now.
|
|
33
33
|
initialItemCount: items.length,
|
|
34
|
-
key: items.length,
|
|
35
34
|
}
|
|
36
35
|
: {
|
|
37
36
|
// Ensure the selected item is visible when the list renders
|
|
@@ -56,5 +55,5 @@ function VirtualizedOptions(props) {
|
|
|
56
55
|
? {}
|
|
57
56
|
: {
|
|
58
57
|
Footer: typeof loading === "function" ? loading : () => (0, jsx_runtime_1.jsx)(LoadingDots_1.LoadingDots, { contrast: contrast }),
|
|
59
|
-
} }));
|
|
58
|
+
} }, items.length));
|
|
60
59
|
}
|