diff --git a/src/app_modules/home/view_home_new.tsx b/src/app_modules/home/view_home_new.tsx index edb427ad..71ece24a 100644 --- a/src/app_modules/home/view_home_new.tsx +++ b/src/app_modules/home/view_home_new.tsx @@ -81,7 +81,7 @@ export default function HomeViewNew() { @@ -108,7 +108,7 @@ export default function HomeViewNew() { ) } customButtonRight={ - !dataUser && !countNtf ? ( + !dataUser || !countNtf ? ( diff --git a/src/app_modules/katalog/portofolio/component/button_more_new.tsx b/src/app_modules/katalog/portofolio/component/button_more_new.tsx index 2833c98a..33b325bc 100644 --- a/src/app_modules/katalog/portofolio/component/button_more_new.tsx +++ b/src/app_modules/katalog/portofolio/component/button_more_new.tsx @@ -118,15 +118,18 @@ export default function ComponentPortofolio_ButtonMoreNew({ return ( <> - {userLoginId === authorId ? ( - setOpenDrawer(true)}> - - - ) : ( - - - - )} + { + userLoginId === authorId && ( + setOpenDrawer(true)}> + + + ) + // : ( + // + // + // + // ) + }