Skip to content

Commit 6c16a41

Browse files
authored
remove merry christams (#5532)
1 parent 28bb238 commit 6c16a41

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

web/components/layout/auth/DesktopSidebar.tsx

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ import { ChangelogItem } from "./types";
2929
import SidebarQuickstepCard from "../SidebarQuickstartCard";
3030
import { useHeliconeAgent } from "@/components/templates/agent/HeliconeAgentContext";
3131
import { useCredits } from "@/services/hooks/useCredits";
32-
import { useHasWrappedData } from "@/components/templates/wrapped/useWrapped";
33-
import { Gift } from "lucide-react";
3432

3533
// Sidebar width constants
3634
const SIDEBAR_WIDTH_COLLAPSED = "w-12"; // 48px
@@ -66,9 +64,6 @@ const DesktopSidebar = ({
6664
// Fetch credit balance - defaults to 0 if it fails
6765
const { data: creditData } = useCredits();
6866

69-
// Check if org has wrapped data
70-
const { hasData: hasWrappedData } = useHasWrappedData();
71-
7267
const [isCollapsed, setIsCollapsed] = useLocalStorage(
7368
"isSideBarCollapsed",
7469
false,
@@ -286,23 +281,6 @@ const DesktopSidebar = ({
286281
>
287282
{/* Navigation items */}
288283
<div className="flex flex-col">
289-
{/* Wrapped 2025 Button - Only show if org has data */}
290-
{hasWrappedData && (
291-
<div className="px-2 pt-2">
292-
<Button
293-
variant="ghost"
294-
onClick={() => router.push("/wrapped")}
295-
className={cn(
296-
"w-full gap-2 bg-blue-100 font-medium text-blue-700 hover:bg-blue-200 dark:bg-blue-900/50 dark:text-blue-300 dark:hover:bg-blue-900/70",
297-
isCollapsed ? "h-8 w-8 p-0" : "h-9",
298-
)}
299-
>
300-
<Gift size={16} />
301-
{!isCollapsed && <span>Merry Christmas!</span>}
302-
</Button>
303-
</div>
304-
)}
305-
306284
{/* Quickstart Card - Only show if organization hasn't integrated */}
307285
{onboardingStatus?.hasCompletedQuickstart === false &&
308286
!isCollapsed && <SidebarQuickstepCard />}

0 commit comments

Comments
 (0)