Browse Source

chore: replace marketplace search api (#13963)

tags/1.0.0
zxhlyh 8 months ago
parent
commit
6fc234183a
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      web/service/use-plugins.ts

+ 1
- 1
web/service/use-plugins.ts View File

@@ -326,7 +326,7 @@ export const useMutationPluginsFromMarketplace = () => {
pageSize = 40,
} = pluginsSearchParams
const pluginOrBundle = type === 'bundle' ? 'bundles' : 'plugins'
return postMarketplace<{ data: PluginsFromMarketplaceResponse }>(`/${pluginOrBundle}/search/advanced`, {
return postMarketplace<{ data: PluginsFromMarketplaceResponse }>(`/${pluginOrBundle}/search/basic`, {
body: {
page,
page_size: pageSize,

Loading…
Cancel
Save