Browse Source

fix import error in marketplace (#22759)

tags/1.7.0
KVOJJJin 3 months ago
parent
commit
c2c69ffb82
No account linked to committer's email address
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      web/app/components/plugins/marketplace/index.tsx

+ 3
- 3
web/app/components/plugins/marketplace/index.tsx View File

import ListWrapper from './list/list-wrapper' import ListWrapper from './list/list-wrapper'
import type { SearchParams } from './types' import type { SearchParams } from './types'
import { getMarketplaceCollectionsAndPlugins } from './utils' import { getMarketplaceCollectionsAndPlugins } from './utils'
import { TanstackQueryIniter } from '@/context/query-client'
import { TanstackQueryInitializer } from '@/context/query-client'


type MarketplaceProps = { type MarketplaceProps = {
locale: string locale: string
} }


return ( return (
<TanstackQueryIniter>
<TanstackQueryInitializer>
<MarketplaceContextProvider <MarketplaceContextProvider
searchParams={searchParams} searchParams={searchParams}
shouldExclude={shouldExclude} shouldExclude={shouldExclude}
showInstallButton={showInstallButton} showInstallButton={showInstallButton}
/> />
</MarketplaceContextProvider> </MarketplaceContextProvider>
</TanstackQueryIniter>
</TanstackQueryInitializer>
) )
} }



Loading…
Cancel
Save