fix: validator request story name
This commit is contained in:
parent
4346aa7bfe
commit
86f45d692f
|
@ -16,21 +16,21 @@ type Story = StoryObj<typeof meta>
|
||||||
|
|
||||||
export const Default: Story = {
|
export const Default: Story = {
|
||||||
args: {
|
args: {
|
||||||
number: 1,
|
name: '1',
|
||||||
isTransactionConfirmation: false,
|
isTransactionConfirmation: false,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export const TransactionConfirmation: Story = {
|
export const TransactionConfirmation: Story = {
|
||||||
args: {
|
args: {
|
||||||
number: 1,
|
name: '1',
|
||||||
isTransactionConfirmation: true,
|
isTransactionConfirmation: true,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export const BigNumber: Story = {
|
export const BigNumber: Story = {
|
||||||
args: {
|
args: {
|
||||||
number: 123456789,
|
name: '123456789',
|
||||||
isTransactionConfirmation: false,
|
isTransactionConfirmation: false,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue