From 5dfd563e4bc6293aacc2e26325a9cbca6b9dc7e0 Mon Sep 17 00:00:00 2001 From: Danielle Maywood Date: Mon, 9 Mar 2026 15:49:33 +0000 Subject: [PATCH] fix(site): remove orphaned DiffStatsInline story (#22846) --- .../AgentsPage/DiffStatsInline.stories.tsx | 58 ------------------- 1 file changed, 58 deletions(-) delete mode 100644 site/src/pages/AgentsPage/DiffStatsInline.stories.tsx diff --git a/site/src/pages/AgentsPage/DiffStatsInline.stories.tsx b/site/src/pages/AgentsPage/DiffStatsInline.stories.tsx deleted file mode 100644 index 9e68bcc92f..0000000000 --- a/site/src/pages/AgentsPage/DiffStatsInline.stories.tsx +++ /dev/null @@ -1,58 +0,0 @@ -import type { Meta, StoryObj } from "@storybook/react-vite"; -import { fn } from "storybook/test"; -import { DiffStatsInline } from "./DiffStats"; - -const meta: Meta = { - title: "pages/AgentsPage/DiffStatsInline", - component: DiffStatsInline, - args: { - status: { - chat_id: "chat-1", - changes_requested: false, - additions: 42, - deletions: 7, - changed_files: 5, - }, - onClick: fn(), - }, -}; -export default meta; -type Story = StoryObj; - -export const Default: Story = {}; - -export const ZeroLinesWithFiles: Story = { - args: { - status: { - chat_id: "chat-2", - changes_requested: false, - additions: 0, - deletions: 0, - changed_files: 3, - }, - }, -}; - -export const NoChanges: Story = { - args: { - status: { - chat_id: "chat-3", - changes_requested: false, - additions: 0, - deletions: 0, - changed_files: 0, - }, - }, -}; - -export const LargeNumbers: Story = { - args: { - status: { - chat_id: "chat-4", - changes_requested: false, - additions: 1234, - deletions: 567, - changed_files: 42, - }, - }, -};