Skip to content

Commit 9f7746e

Browse files
author
Antonio Maiolo
authored
fix(app): replace fullscreen icon with panel icon in memory overview (#87)
1 parent 86bc6e9 commit 9f7746e

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.changeset/fix-memory-card-icon.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"think-app": patch
3+
---
4+
5+
fix: replace fullscreen icon with panel icon in memory overview
6+
7+
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.

app/src/components/MemoryCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
Trash2,
66
X,
77
Link as LinkIcon,
8-
Maximize2,
8+
PanelRight,
99
} from "lucide-react";
1010
import { cn } from "@/lib/utils";
1111

@@ -99,7 +99,7 @@ export function MemoryCard({
9999
className="h-7 w-7 text-muted-foreground hover:text-foreground"
100100
title="View Details"
101101
>
102-
<Maximize2 className="h-3.5 w-3.5" />
102+
<PanelRight className="h-3.5 w-3.5" />
103103
</Button>
104104
<Button
105105
variant="ghost"

0 commit comments

Comments
 (0)