fix: server component use translate errorts lint error (#1732)

This commit is contained in:
Joel 2023-12-11 10:15:49 +08:00 committed by GitHub
parent 3675d2eae8
commit 79b4366203
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -2,11 +2,11 @@ import classNames from 'classnames'
import style from '../list.module.css'
import Apps from './Apps'
import { getLocaleOnServer } from '@/i18n/server'
import { useTranslation } from '@/i18n/i18next-serverside-config'
import { useTranslation as translate } from '@/i18n/i18next-serverside-config'
const AppList = async () => {
const locale = getLocaleOnServer()
const { t } = await useTranslation(locale, 'app')
const { t } = await translate(locale, 'app')
return (
<div className='flex flex-col overflow-auto bg-gray-100 shrink-0 grow'>

View File

@ -1,6 +1,6 @@
import React from 'react'
import { getLocaleOnServer } from '@/i18n/server'
import { useTranslation } from '@/i18n/i18next-serverside-config'
import { useTranslation as translate } from '@/i18n/i18next-serverside-config'
import Form from '@/app/components/datasets/settings/form'
type Props = {
@ -11,8 +11,7 @@ const Settings = async ({
params: { datasetId },
}: Props) => {
const locale = getLocaleOnServer()
// eslint-disable-next-line react-hooks/rules-of-hooks
const { t } = await useTranslation(locale, 'dataset-settings')
const { t } = await translate(locale, 'dataset-settings')
return (
<div className='bg-white h-full overflow-y-auto'>