We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a11953 commit 27be0aeCopy full SHA for 27be0ae
1 file changed
packages/bundle/src/adaptiveCards/Attachment/ReceiptCardContent.tsx
@@ -53,13 +53,15 @@ const receiptCardContentPropsSchema = pipe(
53
array(
54
pipe(
55
object({
56
- image: pipe(
57
- object({
58
- alt: string(),
59
- tap: optional(directLineCardActionSchema),
60
- url: string()
61
- }),
62
- readonly()
+ image: optional(
+ pipe(
+ object({
+ alt: string(),
+ tap: optional(directLineCardActionSchema),
+ url: string()
+ }),
63
+ readonly()
64
+ )
65
),
66
price: string(),
67
quantity: optional(string()),
0 commit comments