diff --git a/web/app/components/plugins/marketplace/description/index.spec.tsx b/web/app/components/plugins/marketplace/description/index.spec.tsx
index 054949ee1f..26b2f3b4fb 100644
--- a/web/app/components/plugins/marketplace/description/index.spec.tsx
+++ b/web/app/components/plugins/marketplace/description/index.spec.tsx
@@ -1,6 +1,6 @@
import { render, screen } from '@testing-library/react'
import { beforeEach, describe, expect, it, vi } from 'vitest'
-import Description from './index'
+import { Description } from './index'
// ================================
// Mock external dependencies
diff --git a/web/app/components/plugins/marketplace/search-box/search-box-wrapper.tsx b/web/app/components/plugins/marketplace/search-box/search-box-wrapper.tsx
index 3cd5cff0be..ff5a192ff1 100644
--- a/web/app/components/plugins/marketplace/search-box/search-box-wrapper.tsx
+++ b/web/app/components/plugins/marketplace/search-box/search-box-wrapper.tsx
@@ -5,6 +5,7 @@ import { useTranslation } from '#i18n'
import { useDebounce } from 'ahooks'
import { useSetAtom } from 'jotai'
import { useMemo, useState } from 'react'
+import Input from '@/app/components/base/input'
import {
PortalToFollowElem,
PortalToFollowElemContent,
@@ -21,7 +22,6 @@ import {
import { PLUGIN_TYPE_SEARCH_MAP } from '../constants'
import { useMarketplacePlugins } from '../query'
import { getMarketplaceListFilterType } from '../utils'
-import SearchBox from './index'
import SearchDropdown from './search-dropdown'
type SearchBoxWrapperProps = {
@@ -34,7 +34,7 @@ const SearchBoxWrapper = ({
}: SearchBoxWrapperProps) => {
const { t } = useTranslation()
const [searchPluginText, handleSearchPluginTextChange] = useSearchPluginText()
- const [filterPluginTags, handleFilterPluginTagsChange] = useFilterPluginTags()
+ const [filterPluginTags] = useFilterPluginTags()
const [activePluginType] = useActivePluginType()
const sort = useMarketplaceSortValue()
const setSearchMode = useSetAtom(searchModeAtom)
@@ -84,24 +84,27 @@ const SearchBoxWrapper = ({
>