mirror of
https://github.com/langgenius/dify.git
synced 2026-05-05 09:58:04 +08:00
chore: fix type check for i18n (#30058)
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
This commit is contained in:
@ -33,8 +33,8 @@ const EconomicalRetrievalMethodConfig: FC<Props> = ({
|
||||
<div className="space-y-2">
|
||||
<RadioCard
|
||||
icon={icon}
|
||||
title={t(`dataset.retrieval.${type}.title`)}
|
||||
description={t(`dataset.retrieval.${type}.description`)}
|
||||
title={t(`dataset.retrieval.${type}.title` as any) as string}
|
||||
description={t(`dataset.retrieval.${type}.description` as any) as string}
|
||||
noRadio
|
||||
chosenConfigWrapClassName="!pb-3"
|
||||
chosenConfig={(
|
||||
|
||||
Reference in New Issue
Block a user