diff --git a/app/components/index.tsx b/app/components/index.tsx index 4591462..1d74d08 100644 --- a/app/components/index.tsx +++ b/app/components/index.tsx @@ -23,7 +23,11 @@ import { API_KEY, APP_ID, APP_INFO, isShowPrompt, promptTemplate } from '@/confi import type { Annotation as AnnotationType } from '@/types/log' import { addFileInfos, sortAgentSorts } from '@/utils/tools' -const Main: FC = () => { +export type IMainProps = { + params: any +} + +const Main: FC = () => { const { t } = useTranslation() const media = useBreakpoints() const isMobile = media === MediaType.mobile