Unused imports & fix pill story

This commit is contained in:
David Baker 2025-11-28 15:53:41 +00:00
parent 6541d3f528
commit 67a41cfd6e
2 changed files with 5 additions and 3 deletions

View File

@ -26,4 +26,8 @@ export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {};
export const WithoutCloseButton: Story = {};
export const WithoutCloseButton: Story = {
args: {
onClick: undefined,
},
};

View File

@ -10,8 +10,6 @@ import { fn } from "storybook/test";
import type { Meta, StoryFn } from "@storybook/react-vite";
import { RichItem } from "./RichItem";
import { I18nContext } from "../../utils/i18nContext";
import { I18nApi } from "../..";
const currentTimestamp = new Date("2025-03-09T12:00:00Z").getTime();