Fix typecheck errors

This commit is contained in:
Daniel Egger 2023-07-12 11:47:16 +02:00
parent 5d29fb7a76
commit dfefdb52ca
1 changed files with 9 additions and 9 deletions

View File

@ -17,9 +17,9 @@ type Story = StoryObj<typeof ItProgress>;
export const NoProgress: Story = {
args: {
statusCount: {
fail: 0,
success: 0,
unknown: 10,
FAIL: 0,
SUCCESS: 0,
UNKNOWN: 10,
},
},
};
@ -27,9 +27,9 @@ export const NoProgress: Story = {
export const FiftyPrecentSuccessProgress: Story = {
args: {
statusCount: {
fail: 0,
success: 5,
unknown: 5,
FAIL: 0,
SUCCESS: 5,
UNKNOWN: 5,
},
},
};
@ -37,9 +37,9 @@ export const FiftyPrecentSuccessProgress: Story = {
export const FiftyPrecentFailProgress: Story = {
args: {
statusCount: {
fail: 5,
success: 0,
unknown: 5,
FAIL: 5,
SUCCESS: 0,
UNKNOWN: 5,
},
},
};