From a430284aa21e3ae1f0d5654e55b2ad2852519cc2 Mon Sep 17 00:00:00 2001 From: wwf <yearningwang@iqtogether.com> Date: 星期三, 04 六月 2025 15:17:49 +0800 Subject: [PATCH] 初始化 --- app/(commonLayout)/explore/installed/[appId]/page.tsx | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git "a/app/\050commonLayout\051/explore/installed/\133appId\135/page.tsx" "b/app/\050commonLayout\051/explore/installed/\133appId\135/page.tsx" index 938a039..c22645c 100644 --- "a/app/\050commonLayout\051/explore/installed/\133appId\135/page.tsx" +++ "b/app/\050commonLayout\051/explore/installed/\133appId\135/page.tsx" @@ -3,14 +3,14 @@ import Main from '@/app/components/explore/installed-app' export type IInstalledAppProps = { - params: Promise<{ + params: { appId: string - }> + } } -const InstalledApp: FC<IInstalledAppProps> = async ({ params }) => { +const InstalledApp: FC<IInstalledAppProps> = ({ params: { appId } }) => { return ( - <Main id={(await params).appId} /> + <Main id={appId} /> ) } export default React.memo(InstalledApp) -- Gitblit v1.8.0