From 9dfafc1382f31ce6793426a5f3cffc387126ee96 Mon Sep 17 00:00:00 2001 From: NFish Date: Fri, 25 Apr 2025 20:30:51 +0800 Subject: [PATCH] fix: update categories menu style on create from template modal --- .../components/app/create-app-dialog/app-list/sidebar.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/app/components/app/create-app-dialog/app-list/sidebar.tsx b/web/app/components/app/create-app-dialog/app-list/sidebar.tsx index 86048316ab..520c29dc3e 100644 --- a/web/app/components/app/create-app-dialog/app-list/sidebar.tsx +++ b/web/app/components/app/create-app-dialog/app-list/sidebar.tsx @@ -1,5 +1,5 @@ 'use client' -import { RiStickyNoteAddLine, RiThumbUpFill } from '@remixicon/react' +import { RiStickyNoteAddLine, RiThumbUpLine } from '@remixicon/react' import { useTranslation } from 'react-i18next' import classNames from '@/utils/classnames' import Divider from '@/app/components/base/divider' @@ -40,10 +40,10 @@ type CategoryItemProps = { } function CategoryItem({ category, active, onClick }: CategoryItemProps) { return
  • { onClick?.(category) }}> - {category === AppCategories.RECOMMENDED &&
    - + {category === AppCategories.RECOMMENDED &&
    +
    }