From 6f1b64144fb4f3e54f503bfb0abd637f48d63d88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Wed, 3 Apr 2024 23:45:58 +0200 Subject: [PATCH] AccountContainer: Pass withRelationship to Account MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- src/containers/account-container.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/account-container.tsx b/src/containers/account-container.tsx index 2d7090b25..31500b739 100644 --- a/src/containers/account-container.tsx +++ b/src/containers/account-container.tsx @@ -12,7 +12,7 @@ const AccountContainer: React.FC = ({ id, withRelationship, . const { account } = useAccount(id, { withRelationship }); return ( - + ); };