You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 13, 2023. It is now read-only.
The React team advise to use the key property for every element rendered in a list, to avoid useless re-renders (see guide here).
From a quick analysis in the codebase, we have to fix:
./src/old-pages/Clusters/Accounting.tsx
188:75 Error: Missing "key" prop for element in iterator react/jsx-key
199:41 Error: Missing "key" prop for element in iterator react/jsx-key
./src/old-pages/Configure/MultiUser.tsx
134:65 Error: Missing "key" prop for element in iterator react/jsx-key
The text was updated successfully, but these errors were encountered:
Description
The React team advise to use the
key
property for every element rendered in a list, to avoid useless re-renders (see guide here).From a quick analysis in the codebase, we have to fix:
The text was updated successfully, but these errors were encountered: