diff --git a/apps/desktop/src/app/command-palette/marketplace-theme-page.tsx b/apps/desktop/src/app/command-palette/marketplace-theme-page.tsx index 613b1907929..eb175fdcb72 100644 --- a/apps/desktop/src/app/command-palette/marketplace-theme-page.tsx +++ b/apps/desktop/src/app/command-palette/marketplace-theme-page.tsx @@ -11,6 +11,7 @@ import { useQuery } from '@tanstack/react-query' import { useEffect, useState } from 'react' +import { HUD_ITEM, HUD_TEXT } from '@/app/floating-hud' import type { DesktopMarketplaceSearchItem } from '@/global' import { useI18n } from '@/i18n' import { triggerHaptic } from '@/lib/haptics' @@ -74,7 +75,7 @@ export function MarketplaceThemePage({ search, onPickTheme }: MarketplaceThemePa } if (query.isLoading) { - return } text={copy.loading} /> + return } text={copy.loading} /> } if (query.isError) { @@ -89,16 +90,18 @@ export function MarketplaceThemePage({ search, onPickTheme }: MarketplaceThemePa return (
- {installError && ( -

{installError}

- )} + {installError &&

{installError}

} {results.map(item => { const busy = installingId === item.extensionId const done = installed[item.extensionId] return (