fix wrong story

This commit is contained in:
Hristo Nedelkov 2023-09-11 10:44:12 +03:00
parent 15ef7b3286
commit d6f7493263
2 changed files with 22 additions and 22 deletions

View File

@ -17,5 +17,25 @@ export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {},
args: {
validatorsValue: '4',
executionSyncStatus1: {
text: "Execution Sync Status",
isGaugeIncluded: true,
gaugeColor: "$blue",
gaugeSynced: 123.524,
gaugeTotal: 172.503,
},
executionSyncStatus2: {
text: "Execution Sync Status",
isGaugeIncluded: true,
gaugeColor: "$red",
gaugeSynced: 123.524,
gaugeTotal: 172.503,
},
currentAPRValue: "4.40%",
estimatedActivationTimeValue: "32 Days",
validatorQueueValue: "92603",
},
}

View File

@ -15,25 +15,5 @@ export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {
validatorsValue: { text: '4' },
executionSyncStatus1: {
text: "Execution Sync Status",
isGaugeIncluded: true,
gaugeColor: "$blue",
gaugeSynced: 123.524,
gaugeTotal: 172.503,
},
executionSyncStatus2: {
text: "Execution Sync Status",
isGaugeIncluded: true,
gaugeColor: "$red",
gaugeSynced: 123.524,
gaugeTotal: 172.503,
},
currentAPRValue: "4.40%",
estimatedActivationTimeValue: "32 Days",
validatorQueueValue: "92603",
},
args: { },
}