wwf
2 天以前 a430284aa21e3ae1f0d5654e55b2ad2852519cc2
app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/page.tsx
@@ -5,18 +5,14 @@
import ApikeyInfoPanel from '@/app/components/app/overview/apikey-info-panel'
export type IDevelopProps = {
  params: Promise<{ appId: string }>
  params: { appId: string }
}
const Overview = async (props: IDevelopProps) => {
  const params = await props.params
  const {
    appId,
  } = params
const Overview = async ({
  params: { appId },
}: IDevelopProps) => {
  return (
    <div className="h-full overflow-scroll bg-chatbot-bg px-4 py-6 sm:px-12">
    <div className="h-full px-4 sm:px-16 py-6 overflow-scroll">
      <ApikeyInfoPanel />
      <TracingPanel />
      <CardView appId={appId} />