Skip to content

Commit 81aad0a

Browse files
committed
fix(marketplace): conditionally apply header positioning class,avoid the GitHub feedback link at the bottom not being clickable.
1 parent bdcfaa9 commit 81aad0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webview-ui/src/components/marketplace/MarketplaceView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ export function MarketplaceView({ stateManager, onDone, targetTab, hideHeader =
9898

9999
return (
100100
<TooltipProvider delayDuration={300}>
101-
{/* kilocode_change: add className relative */}
102-
<Tab className="relative">
101+
{/* kilocode_change: header conditionally className relative or fixed */}
102+
<Tab className={cn(hideHeader ? "relative" : "fixed")}>
103103
{/* kilocode_change: display header conditionally */}
104104
<TabHeader
105105
style={{ display: hideHeader ? "none" : "flex" }}

0 commit comments

Comments
 (0)