Skip to content

Commit 9a11953

Browse files
committed
Fix disabled props
1 parent c92322f commit 9a11953

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/bundle/src/adaptiveCards/Attachment/AnimationCardContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const animationCardContentPropsSchema = pipe(
3030
}),
3131
readonly()
3232
),
33-
disabled: boolean()
33+
disabled: optional(boolean())
3434
}),
3535
readonly()
3636
);

packages/bundle/src/adaptiveCards/Attachment/AudioCardContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const audioCardContentPropsSchema = pipe(
2222
}),
2323
readonly()
2424
),
25-
disabled: boolean()
25+
disabled: optional(boolean())
2626
}),
2727
readonly()
2828
);

0 commit comments

Comments
 (0)