diff --git a/web/app/components/explore/app-card/index.tsx b/web/app/components/explore/app-card/index.tsx
index 8a95378710..97906abd7f 100644
--- a/web/app/components/explore/app-card/index.tsx
+++ b/web/app/components/explore/app-card/index.tsx
@@ -1,8 +1,8 @@
'use client'
import cn from 'classnames'
import { useTranslation } from 'react-i18next'
+import { App } from '@/models/explore'
import AppModeLabel from '@/app/(commonLayout)/apps/AppModeLabel'
-import type { App } from '@/types/app'
import AppIcon from '@/app/components/base/app-icon'
import { PlusIcon } from '@heroicons/react/20/solid'
import Button from '../../base/button'
@@ -27,23 +27,23 @@ const AppCard = ({
onAddToWorkspace
}: AppCardProps) => {
const { t } = useTranslation()
-
+ const {app: appBasicInfo} = app
return (
-
{app.name}
+
{appBasicInfo.name}
-
{app.model_config?.pre_prompt}
+
{app.description}
-