chore: remove unused code (#1989)

This commit is contained in:
crazywoola
2024-01-11 11:08:32 +08:00
committed by GitHub
parent f7939c758f
commit eed5fdd768
12 changed files with 7 additions and 298 deletions

View File

@@ -1,5 +1,4 @@
import React from 'react'
import { getDictionary } from '@/i18n/server'
import { type Locale } from '@/i18n'
import DevelopMain from '@/app/components/develop'
@@ -8,11 +7,9 @@ export type IDevelopProps = {
}
const Develop = async ({
params: { locale, appId },
params: { appId },
}: IDevelopProps) => {
const dictionary = await getDictionary(locale)
return <DevelopMain appId={appId} dictionary={dictionary} />
return <DevelopMain appId={appId} />
}
export default Develop