NTP-40716 | fix in purchase journey (#15146)

This commit is contained in:
Sandeep Kumar
2025-02-26 18:12:42 +05:30
committed by GitHub
parent db3bb0a874
commit 30dd70052c

View File

@@ -15,8 +15,8 @@ fun toStringAddress(address: Address?): String {
address?.houseNumber?.takeIf { it.isNotNullAndNotEmpty() },
address?.locality?.takeIf { it.isNotNullAndNotEmpty() },
address?.city?.takeIf { it.isNotNullAndNotEmpty() },
address?.pincode?.takeIf { it.isNotNullAndNotEmpty() },
address?.state?.takeIf { it.isNotNullAndNotEmpty() },
address?.pincode?.takeIf { it.isNotNullAndNotEmpty() },
)
.joinToString(", ")
}