From 9dafe9914594dfc0f9a8b2fbca390bc480159279 Mon Sep 17 00:00:00 2001 From: crazywoola <427733928@qq.com> Date: Thu, 25 May 2023 22:19:31 +0800 Subject: [PATCH] fix: default icon --- web/app/components/base/app-icon/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/base/app-icon/index.tsx b/web/app/components/base/app-icon/index.tsx index ef39f77cd1..0b20542733 100644 --- a/web/app/components/base/app-icon/index.tsx +++ b/web/app/components/base/app-icon/index.tsx @@ -39,7 +39,7 @@ const AppIcon: FC = ({ }} onClick={onClick} > - {innerIcon ? innerIcon : icon && icon !== '' ? : } + {innerIcon ? innerIcon : icon && icon !== '' ? : } ) }