update
Some checks failed
Build and Publish / BuildAndDeployAmd64 (push) Failing after 30s
Build and Publish / BuildAndDeployArm64 (push) Failing after 13m2s

This commit is contained in:
matst80
2025-12-05 07:44:34 +01:00
parent 593d6cfe44
commit b4ffb9da85
6 changed files with 485 additions and 613 deletions

View File

@@ -16,6 +16,10 @@ func HandleContactDetailsUpdated(g *CheckoutGrain, m *checkout_messages.ContactD
g.ContactDetails = &ContactDetails{}
}
if m.PostalCode != nil {
g.ContactDetails.PostalCode = m.PostalCode
}
if m.Email != nil {
g.ContactDetails.Email = m.Email
}