diff --git a/web/app/components/explore/try-app/preview/flow-app-preview.tsx b/web/app/components/explore/try-app/preview/flow-app-preview.tsx index c6cc4b33ad..a1f682124f 100644 --- a/web/app/components/explore/try-app/preview/flow-app-preview.tsx +++ b/web/app/components/explore/try-app/preview/flow-app-preview.tsx @@ -25,7 +25,7 @@ const FlowAppPreview: FC = ({ if (!data) return null return ( -
+
= ({ }) => { const isBasicApp = ['agent-chat', 'chat', 'completion'].includes(appDetail.mode) - return isBasicApp ? : + return
+ {isBasicApp ? : } +
} export default React.memo(Preview)