浏览代码

fix import error in marketplace (#22759)

tags/1.7.0
KVOJJJin 3 个月前
父节点
当前提交
c2c69ffb82
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      web/app/components/plugins/marketplace/index.tsx

+ 3
- 3
web/app/components/plugins/marketplace/index.tsx 查看文件

@@ -6,7 +6,7 @@ import PluginTypeSwitch from './plugin-type-switch'
import ListWrapper from './list/list-wrapper'
import type { SearchParams } from './types'
import { getMarketplaceCollectionsAndPlugins } from './utils'
import { TanstackQueryIniter } from '@/context/query-client'
import { TanstackQueryInitializer } from '@/context/query-client'

type MarketplaceProps = {
locale: string
@@ -39,7 +39,7 @@ const Marketplace = async ({
}

return (
<TanstackQueryIniter>
<TanstackQueryInitializer>
<MarketplaceContextProvider
searchParams={searchParams}
shouldExclude={shouldExclude}
@@ -65,7 +65,7 @@ const Marketplace = async ({
showInstallButton={showInstallButton}
/>
</MarketplaceContextProvider>
</TanstackQueryIniter>
</TanstackQueryInitializer>
)
}


正在加载...
取消
保存