From 76dd89187469418e1a2b0f73483488b2fd3e2cfa Mon Sep 17 00:00:00 2001 From: kriks7iitk Date: Thu, 18 Jul 2024 18:30:16 +0530 Subject: [PATCH] sanity fix --- frontend/src/HomePage/AppList.jsx | 2 +- frontend/src/HomePage/HomePage.jsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/HomePage/AppList.jsx b/frontend/src/HomePage/AppList.jsx index 593f4c8901..cea0156f19 100644 --- a/frontend/src/HomePage/AppList.jsx +++ b/frontend/src/HomePage/AppList.jsx @@ -48,7 +48,7 @@ const AppList = (props) => { )} - {!props.isLoading && (props.apps?.length === 0 || props.currentFolder?.count == 0) && ( + {!props.isLoading && props.apps?.length === 0 && (
)} - {(isLoading || meta.total_count > 0 || currentFolder.count === 0) && ( + {(isLoading || meta.total_count > 0 || !_.isEmpty(currentFolder)) && (