Merge branch 'account-container-fix' into 'main'

Improve pending/scheduled statuses styles

See merge request soapbox-pub/soapbox!2977
environments/review-main-yi2y9f/deployments/4518
marcin mikołajczak 2024-04-03 22:00:47 +00:00
commit 06c6bbf39f
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 account={account!} withRelationship={withRelationship} {...props} />
);
};