Use null instead of undefined
This commit is contained in:
parent
c74f178bcb
commit
9e7e2bbde6
|
@ -38,7 +38,7 @@ export async function getStaticProps() {
|
||||||
const matches = quadraticMatches(txns, totalRaised)
|
const matches = quadraticMatches(txns, totalRaised)
|
||||||
const numDonors = uniqBy(txns, (txn) => txn.fromId).length
|
const numDonors = uniqBy(txns, (txn) => txn.fromId).length
|
||||||
const donorId = last(txns)?.fromId
|
const donorId = last(txns)?.fromId
|
||||||
const mostRecentDonor = donorId ? await getUser(donorId) : undefined
|
const mostRecentDonor = donorId ? await getUser(donorId) : null
|
||||||
|
|
||||||
return {
|
return {
|
||||||
props: {
|
props: {
|
||||||
|
@ -91,7 +91,7 @@ export default function Charity(props: {
|
||||||
matches: { [charityId: string]: number }
|
matches: { [charityId: string]: number }
|
||||||
txns: Txn[]
|
txns: Txn[]
|
||||||
numDonors: number
|
numDonors: number
|
||||||
mostRecentDonor?: User
|
mostRecentDonor?: User | null
|
||||||
}) {
|
}) {
|
||||||
const { totalRaised, charities, matches, numDonors, mostRecentDonor } = props
|
const { totalRaised, charities, matches, numDonors, mostRecentDonor } = props
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user