From 58a75a1c89def3e179eae03d7f76ce19384fa45c Mon Sep 17 00:00:00 2001 From: victorAnumudu Date: Thu, 28 Nov 2024 11:19:02 +0100 Subject: [PATCH] family jome page bug fix --- src/components/Home/index.jsx | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/components/Home/index.jsx b/src/components/Home/index.jsx index 5787de0..38ccd87 100644 --- a/src/components/Home/index.jsx +++ b/src/components/Home/index.jsx @@ -24,9 +24,6 @@ export default function Home(props) { return (
- {commonHeadBanner.loading ? - - : <> {userDetails && userDetails?.account_type == "FAMILY" ? ( ) : userDetails && userDetails?.account_type == "FULL" ? ( - + <> + {commonHeadBanner.loading ? + + : + + } + ) : (
You are not logged in or your account type is not supported.
)} - }
);