Fix activation props

This commit is contained in:
Hristo Nedelkov 2023-09-11 10:42:34 +03:00
parent 9bb67814fb
commit 15ef7b3286
1 changed files with 21 additions and 1 deletions

View File

@ -15,5 +15,25 @@ export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {},
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",
},
}