React array is empty when rendered if page is not reloaded manually
I have a Members.tsx
page, which depending on the active
variable displays the MembersList.tsx
or TeamsList.tsx
with this code:
{active == "team" ? <TeamsList /> : <MembersList />}