Skip to content

Commit

Permalink
Merge pull request #95 from yusuke-ten/fix/IMainProps-type
Browse files Browse the repository at this point in the history
fix IMainProps-type
  • Loading branch information
crazywoola authored Dec 7, 2024
2 parents 1f56072 + 349e081 commit 9d2d092
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/components/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<IMainProps> = () => {
const { t } = useTranslation()
const media = useBreakpoints()
const isMobile = media === MediaType.mobile
Expand Down

0 comments on commit 9d2d092

Please sign in to comment.