Skip to content

Commit 78737a8

Browse files
Tony Espinozaclaude
andcommitted
feat(default-app): Simplify charm list UI by renaming to "Patterns" and removing table headers
Changed the main heading from "Charms (N)" to just "Patterns" to better reflect the pattern-centric nature of the system. Removed the table header row ("Charm Name" and "Actions") for a cleaner, more minimal UI that lets the content speak for itself. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 381e6a2 commit 78737a8

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

packages/patterns/default-app.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -170,15 +170,9 @@ export default recipe<CharmsListInput, CharmsListOutput>(
170170

171171
<ct-vscroll flex showScrollbar>
172172
<ct-vstack gap="4" padding="6">
173-
<h2>Charms ({allCharms.length})</h2>
173+
<h2>Patterns</h2>
174174

175175
<ct-table full-width hover>
176-
<thead>
177-
<tr>
178-
<th>Charm Name</th>
179-
<th>Actions</th>
180-
</tr>
181-
</thead>
182176
<tbody>
183177
{allCharms.map((charm) => (
184178
<tr>

0 commit comments

Comments
 (0)