mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 20:18:40 +08:00
11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
import { useTranslation } from 'react-i18next'
|
|
|
|
export const ValidatingTip = () => {
|
|
const { t } = useTranslation()
|
|
return (
|
|
<div className="mt-2 text-xs font-normal text-primary-600">
|
|
{t(($) => $['provider.validating'], { ns: 'common' })}
|
|
</div>
|
|
)
|
|
}
|