From 5b1733ae0269da0df03a2ed256dda2e32492236a Mon Sep 17 00:00:00 2001 From: py-bay Date: Fri, 10 Oct 2025 21:59:27 +0200 Subject: [PATCH] Fix FileChip text truncation issue MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove hardcoded maxWidth of 300px from Typography component to allow text to use full available space. Text will now only truncate when it actually reaches the container edge. Fixes #64 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/components/FileChip/FileChip.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/FileChip/FileChip.tsx b/src/components/FileChip/FileChip.tsx index 3a59a97..761b250 100644 --- a/src/components/FileChip/FileChip.tsx +++ b/src/components/FileChip/FileChip.tsx @@ -218,7 +218,6 @@ const FileChip: React.FC = ({ whiteSpace: "nowrap", overflow: "hidden", textOverflow: "ellipsis", - maxWidth: "300px", }} title={filename} >