Skip to content

Commit

Permalink
update direct type
Browse files Browse the repository at this point in the history
  • Loading branch information
codemist committed Dec 6, 2024
1 parent c4721fa commit 2122ca1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/components/server/stories/StatusPill.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@ type Story = StoryObj<typeof StatusPill>;

export const ActionNeeded: Story = {
args: {
directType: "actionNeeded",
type: "actionNeeded",
},
};

export const InProgress: Story = {
args: {
directType: "inProgress",
type: "inProgress",
},
};

export const Removed: Story = {
args: {
directType: "removed",
type: "removed",
},
};

export const Fixed: Story = {
args: {
directType: "fixed",
type: "fixed",
},
};

0 comments on commit 2122ca1

Please sign in to comment.