'use client' import { Button } from '@langgenius/dify-ui/button' import { useTranslation } from 'react-i18next' type Props = { isRetrying: boolean onRetry: () => void } const VectorSpaceUnavailable = ({ isRetrying, onRetry }: Props) => { const { t } = useTranslation() return (
{t(($) => $['usagePage.vectorSpace'], { ns: 'billing' })}:{' '} {t(($) => $['plansCommon.unavailable'], { ns: 'billing' })}
) } export default VectorSpaceUnavailable