Open BarcoMasile opened 2 months ago
Thank you for reporting us your feedback!
The internal ticket has been created: https://warthogs.atlassian.net/browse/IAM-1020.
This message was autogenerated
Hi @BarcoMasile are you seeing performance issues in any particular parts of the UI?
Description
Throughout the frontend React.js-based codebase inline functions are used and passed to components, which causes some unnecessary re-renders. This can be easily improved by leveraging the library function
useCallback
with the proper dependecies parameter. Also, some use of theuseMemo
can be leveraged to improve components where possible. In general, this issue is to push for the UI code to follow the basic guidelines of React base application development.