Replies: 1 comment
-
@issimin check if itemKey and items are stale. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
const getItemKey = useCallback(
(index: number) => {
return (item && itemKey?.(item)) ?? index;
},
[itemKey, items]
);
In the performance pressure test scenario, this 'Maximum update ' error is reported with 'items', but not without 'items'. How can I solve this problem
Beta Was this translation helpful? Give feedback.
All reactions