fix: update val request story with new arg

This commit is contained in:
RadoslavDimchev 2023-09-26 23:03:53 +03:00
parent 314c4238ab
commit 41b9df417d

View File

@ -16,36 +16,12 @@ type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {
validator: {
name: '1',
address: 'zQ3asdf9d4Gs0',
},
number: 1,
},
}
export const WithoutName: Story = {
export const BigNumber: Story = {
args: {
validator: {
name: '',
address: 'zQ3asdf9d4Gs0',
},
},
}
export const WithoutAddress: Story = {
args: {
validator: {
name: '1',
address: '',
},
},
}
export const WithoutValues: Story = {
args: {
validator: {
name: '',
address: '',
},
number: 123456789,
},
}