app/(commonLayout)/explore/installed/[appId]/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)