Skip to content

Commit

Permalink
Handle null to undefined conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
sirbrillig committed Dec 10, 2024
1 parent e6bc1e9 commit 539cf1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/my-sites/purchases/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export function Purchases() {
<PurchaseListConciergeBanner
availableSessions={ availableConciergeSessions }
isUserBlocked={ isConciergeUserBlocked }
nextAppointment={ nextConciergeAppointment }
nextAppointment={ nextConciergeAppointment ?? undefined }
siteId={ siteId ?? undefined }
/>
<CheckoutErrorBoundary
Expand Down

0 comments on commit 539cf1f

Please sign in to comment.