Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
zielvna committed Sep 12, 2024
1 parent 38a220d commit 6c05c44
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/Stats/PoolList/Stats.PoolList.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { MemoryRouter } from 'react-router-dom'
import PoolList from './PoolList'
import { store } from '@store/index'
import { Provider } from 'react-redux'
import { Network } from '@invariant-labs/a0-sdk'

const meta = {
title: 'Stats/PoolList',
Expand Down Expand Up @@ -75,12 +76,15 @@ const poolsList = Array(40)
coingeckoId: 'usd-coin'
},
volume24: randomVolume24,
tvl: randomTvl24
tvl: randomTvl24,
addressFrom: '5Dvb5E8zKU4E9c7YxfNL5VC8YQj4VAFUTCGYY9ayFLnnY3UA',
addressTo: '5Dvb5E8zKU4E9c7YxfNL5VC8YQj4VAFUTCGYY9ayFLnnY3UA'
}
})

export const Primary: Story = {
args: {
data: poolsList
data: poolsList,
network: Network.Local
}
}

0 comments on commit 6c05c44

Please sign in to comment.