feat: email undefined value (#9240)

* Fix: #9210

* Fix: #9215 Added Password Validation to App Signup

* FIX #9216 Fixed the Update Button Allignment

* Fix #9238: Don't render descripiton in email template if undefined

* Remove Prev Changes

* Remove unwanted space

* Revert yarn.lock

---------

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
This commit is contained in:
Piyush Garg
2023-06-06 10:03:40 +00:00
committed by GitHub
co-authored by Peer Richelsen
parent 8c049b29b3
commit 8bc8a045b6
@@ -11,7 +11,12 @@ export function UserFieldsResponses(props: { calEvent: CalendarEvent }) {
<>
{Object.keys(labelValueMap).map((key) =>
labelValueMap[key] !== "" ? (
<Info key={key} label={key} description={`${labelValueMap[key]}`} withSpacer />
<Info
key={key}
label={key}
description={`${labelValueMap[key] ? labelValueMap[key] : ""}`}
withSpacer
/>
) : null
)}
</>