Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
ccali11 committed Oct 26, 2023
1 parent ac9d0c5 commit 942d3b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/composables/operators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export default function useOperators() {

async function _getPools(operatorId: number, type: 'base' | 'eigen'): Promise<PoolConfig[]> {
const pools: PoolConfig[] = []
const manager = type === 'base' ? baseManager : eigenManbaseManager
const manager = type === 'base' ? baseManager : eigenManager
const poolIds = [
...await (manager as CasimirManager).getPendingPoolIds(),
...await (manager as CasimirManager).getStakedPoolIds()
Expand Down

0 comments on commit 942d3b8

Please sign in to comment.