Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/fix-memory-card-icon.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"think-app": patch
---

fix: replace fullscreen icon with panel icon in memory overview

Replace the misleading Maximize2 (fullscreen) icon with a PanelRight icon on memory cards. The button opens a detail sidebar panel, and the new icon accurately represents this behavior.
4 changes: 2 additions & 2 deletions app/src/components/MemoryCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
Trash2,
X,
Link as LinkIcon,
Maximize2,
PanelRight,
} from "lucide-react";
import { cn } from "@/lib/utils";

Expand Down Expand Up @@ -99,7 +99,7 @@ export function MemoryCard({
className="h-7 w-7 text-muted-foreground hover:text-foreground"
title="View Details"
>
<Maximize2 className="h-3.5 w-3.5" />
<PanelRight className="h-3.5 w-3.5" />
</Button>
<Button
variant="ghost"
Expand Down