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
The current_member_header isn't a good solution since it includes payment instruments, which can be very large.
Instead, we should be adding it to the entity we render, so it's in the body.
Also make sure we are using a consistent update mechanism, instead of using setUser adhoc in various API calls. It should just be .then(handleUpdateCurrentMember).
The text was updated successfully, but these errors were encountered:
The `value` was changing, causing massive re-renders.
Have to `useMemo` to avoid them in most cases.
Also clean up some payment instrument handlers in adding a card.
Will clean up the rest as part of
#312
The
current_member_header
isn't a good solution since it includes payment instruments, which can be very large.Instead, we should be adding it to the entity we render, so it's in the body.
Also make sure we are using a consistent update mechanism, instead of using
setUser
adhoc in various API calls. It should just be.then(handleUpdateCurrentMember)
.The text was updated successfully, but these errors were encountered: