feat(HAI-001): complete Step 2 — replace emojis with Lucide icons

This commit is contained in:
Dustin Byrne
2026-03-25 20:31:58 -04:00
parent db2b84c231
commit d8ac565f85
5 changed files with 11 additions and 6 deletions

View File

@@ -1,4 +1,5 @@
import type { Task, TaskDetail } from "@hai/core";
import { ClipboardList, GitBranch } from "lucide-react";
import { TaskCard } from "./TaskCard";
import type { ToastType } from "../hooks/useToast";
@@ -21,7 +22,7 @@ export function WorktreeGroup({
<div className="worktree-group">
<div className="worktree-group-header">
<span className="worktree-icon">
{label === "Up Next" || label === "Unassigned" ? "📋" : "🌿"}
{label === "Up Next" || label === "Unassigned" ? <ClipboardList size={14} /> : <GitBranch size={14} />}
</span>
<span className="worktree-label">{label}</span>
</div>