chore: fix categoriesMap[category] undefined

This commit is contained in:
Joel 2024-11-22 10:39:22 +08:00
parent 85377d13fc
commit 786f2d9bf6
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ const Card = ({
const locale = localeFromProps ? getLanguage(localeFromProps) : defaultLocale
const { categoriesMap } = useCategories()
const { type, category, name, org, label, brief, icon, verified } = payload
const cornerMark = type !== 'plugin' ? type : categoriesMap[category].label
const cornerMark = type !== 'plugin' ? type : categoriesMap[category]?.label
const getLocalizedText = (obj: Record<string, string> | undefined) =>
obj?.[locale] || obj?.['en-US'] || obj?.en_US || ''