diff --git a/src/components/General/ValidatorsMenuWithPrice.stories.ts b/src/components/General/ValidatorsMenuWithPrice.stories.ts index 0d382f71..e73d3a7f 100644 --- a/src/components/General/ValidatorsMenuWithPrice.stories.ts +++ b/src/components/General/ValidatorsMenuWithPrice.stories.ts @@ -20,11 +20,11 @@ export const Default: Story = { }, } -export const WithoutValidatorCount: Story = { +export const ClientSetupLabel: Story = { args: { - validatorCount: 0, + validatorCount: 2, changeValidatorCountHandler: () => {}, - label: DEPOSIT_SUBTITLE, + label: 'How many Validators would you like to run?', }, } @@ -35,3 +35,27 @@ export const WithLongValidatorCount: Story = { label: DEPOSIT_SUBTITLE, }, } + +export const WithoutValidatorCount: Story = { + args: { + validatorCount: 0, + changeValidatorCountHandler: () => {}, + label: DEPOSIT_SUBTITLE, + }, +} + +export const WithoutLabel: Story = { + args: { + validatorCount: 2, + changeValidatorCountHandler: () => {}, + label: '', + }, +} + +export const WithoutValues: Story = { + args: { + validatorCount: 0, + changeValidatorCountHandler: () => {}, + label: '', + }, +}