AccountContainer: Pass withRelationship to Account
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
2c3095f52c
commit
6f1b64144f
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ const AccountContainer: React.FC<IAccountContainer> = ({ id, withRelationship, .
|
||||||
const { account } = useAccount(id, { withRelationship });
|
const { account } = useAccount(id, { withRelationship });
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Account account={account!} {...props} />
|
<Account account={account!} withRelationship={withRelationship} {...props} />
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue