AccountContainer: Pass withRelationship to Account

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2024-04-03 23:45:58 +02:00
parent 2c3095f52c
commit 6f1b64144f

View file

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