We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6adc183 commit 8fc8a62Copy full SHA for 8fc8a62
src/components/List/List.tsx
@@ -96,13 +96,6 @@ export const List = <T extends any>({
96
? 1
97
: -1;
98
let nextIndex: number = index + step;
99
- if (focusIndex === null) {
100
- if (arrowDown) {
101
- nextIndex = 0;
102
- } else if (arrowUp) {
103
- nextIndex = items.length - 1;
104
- }
105
106
const additionalItemIndex: number = items ? items.length : 0;
107
if (
108
(renderAdditionalItem &&
0 commit comments