story-kit: merge 243_bug_replace_pnpm_with_npm

This commit is contained in:
Dave
2026-03-14 18:09:58 +00:00
parent 3a430dfaa2
commit 3abea68f9e
12 changed files with 72 additions and 6658 deletions

View File

@@ -25,6 +25,7 @@ vi.mock("../api/agents", () => ({
import { agentsApi, subscribeAgentStream } from "../api/agents";
import { api } from "../api/client";
const { WorkItemDetailPanel } = await import("./WorkItemDetailPanel");
const mockedGetWorkItemContent = vi.mocked(api.getWorkItemContent);

View File

@@ -482,9 +482,10 @@ export function WorkItemDetailPanel({
{/* Placeholder sections for future content */}
{(
[
{ id: "coverage", label: "Coverage" },
] as { id: string; label: string }[]
[{ id: "coverage", label: "Coverage" }] as {
id: string;
label: string;
}[]
).map(({ id, label }) => (
<div
key={id}