adding missing relationship prop from parent container

i1461
tassoman 2023-09-20 17:24:24 +02:00
rodzic f236c7b0a2
commit fbff2e2ec8
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -12,7 +12,7 @@ const AccountContainer: React.FC<IAccountContainer> = ({ id, withRelationship, .
const { account } = useAccount(id, { withRelationship });
return (
<Account account={account!} {...props} />
<Account withRelationship={withRelationship} account={account!} {...props} />
);
};