Просмотр исходного кода

fix: remove duplicated category “recommended” (#10375)

tags/0.11.1
非法操作 1 год назад
Родитель
Сommit
3cb2fb8250
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 2 добавлений и 2 удалений
  1. 2
    2
      web/app/components/explore/category.tsx

+ 2
- 2
web/app/components/explore/category.tsx Просмотреть файл

@@ -28,7 +28,7 @@ const Category: FC<ICategoryProps> = ({
allCategoriesEn,
}) => {
const { t } = useTranslation()
const isAllCategories = !list.includes(value as AppCategory)
const isAllCategories = !list.includes(value as AppCategory) || value === allCategoriesEn

const itemClassName = (isSelected: boolean) => cn(
'flex items-center px-3 py-[7px] h-[32px] rounded-lg border-[0.5px] border-transparent text-gray-700 font-medium leading-[18px] cursor-pointer hover:bg-gray-200',
@@ -44,7 +44,7 @@ const Category: FC<ICategoryProps> = ({
<ThumbsUp className='mr-1 w-3.5 h-3.5' />
{t('explore.apps.allCategories')}
</div>
{list.map(name => (
{list.filter(name => name !== allCategoriesEn).map(name => (
<div
key={name}
className={itemClassName(name === value)}

Загрузка…
Отмена
Сохранить