Skip to content

Commit d4fdfbb

Browse files
committed
add args to fix typecheck errors
1 parent 0574d21 commit d4fdfbb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/components/tag/Tag.stories.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ export const Interactive: Story = {
6767
};
6868

6969
export const AllDefault: Story = {
70+
args: { type: "guide" },
7071
render: () => (
7172
<div className="flex gap-2 flex-wrap">
7273
<Tag type="guide" state="default">
@@ -94,6 +95,7 @@ export const AllDefault: Story = {
9495
};
9596

9697
export const AllHover: Story = {
98+
args: { type: "guide" },
9799
render: () => (
98100
<div className="flex gap-2 flex-wrap">
99101
<Tag type="guide" state="hover">
@@ -120,6 +122,7 @@ export const AllHover: Story = {
120122
};
121123

122124
export const AllSelected: Story = {
125+
args: { type: "guide" },
123126
render: () => (
124127
<div className="flex gap-2 flex-wrap">
125128
<Tag type="guide" state="selected">
@@ -147,6 +150,7 @@ export const AllSelected: Story = {
147150
};
148151

149152
export const AllStatesComparison: Story = {
153+
args: { type: "guide" },
150154
render: () => (
151155
<div className="flex flex-col gap-4">
152156
<div className="flex flex-col gap-2">
@@ -213,6 +217,7 @@ export const AllStatesComparison: Story = {
213217
};
214218

215219
export const InteractiveDemo: Story = {
220+
args: { type: "guide" },
216221
render: () => (
217222
<div className="flex flex-col gap-4">
218223
<div className="flex flex-col gap-2">

0 commit comments

Comments
 (0)