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
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 the useMemo 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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: