diff --git a/web/app/(commonLayout)/apps/check-legacy/components/list.tsx b/web/app/(commonLayout)/apps/check-legacy/components/list.tsx index 149f8b30d4..d464c4e76f 100644 --- a/web/app/(commonLayout)/apps/check-legacy/components/list.tsx +++ b/web/app/(commonLayout)/apps/check-legacy/components/list.tsx @@ -1,6 +1,8 @@ 'use client' import type { FC } from 'react' import React from 'react' +import { useTranslation } from 'react-i18next' +import cn from '@/utils/classnames' type Props = { list: any[] @@ -9,16 +11,33 @@ type Props = { const List: FC = ({ list, }) => { + const { t } = useTranslation() return (
{list.length > 0 ? ( -