import type { SearchParams } from 'nuqs' import { PluginInstallPermissionProviderGuard } from '@/app/components/plugins/install-plugin/components/plugin-install-permission-provider' import { TanstackQueryInitializer } from '@/context/query-client' import Description from './description' import { HydrateQueryClient } from './hydration-server' import ListWrapper from './list/list-wrapper' import StickySearchAndSwitchWrapper from './sticky-search-and-switch-wrapper' type MarketplaceProps = { showInstallButton?: boolean linkToMarketplaceDetail?: boolean pluginTypeSwitchClassName?: string isMarketplacePlatform?: boolean marketplaceNav?: React.ReactNode /** * Pass the search params from the request to prefetch data on the server. */ searchParams?: Promise } const Marketplace = async ({ showInstallButton = false, linkToMarketplaceDetail = false, pluginTypeSwitchClassName, isMarketplacePlatform = false, marketplaceNav, searchParams, }: MarketplaceProps) => { return ( {!isMarketplacePlatform && ( )} ) } export default Marketplace