Remove undefined props

This commit is contained in:
James Grugett 2022-10-10 13:34:02 -05:00
parent f6fd703005
commit 84f79ffe7c

View File

@ -11,6 +11,7 @@ import { PortfolioMetrics, User } from './user'
import { DAY_MS } from './util/time'
import { getBinaryCpmmBetInfo, getNewMultiBetInfo } from './new-bet'
import { getCpmmProbability } from './calculate-cpmm'
import { removeUndefinedProps } from './util/object'
const computeInvestmentValue = (
bets: Bet[],
@ -275,11 +276,11 @@ export const calculateMetricsByContract = (
)
}
return {
return removeUndefinedProps({
contractId: c.id,
...current,
from: periodMetrics,
}
})
})
}