When I am posting an adaptive card in a team's message and channel message using- "post adaptive card and wait for a response".

it's showing as below-

and it got stuck.
but when I am using same Jason on "postcard in a chat or channel" it shows perfectly.

i am using this URL to create the Jason Designer | Adaptive Cards
sharing the jason here-
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
{
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"text": "Clearance Request for"
},
{
"type": "TextBlock",
"text": "New TextBlock",
"wrap": true
},
{
"type": "Input.ChoiceSet",
"choices": [
{
"title": "Removed",
"value": "Choice 1"
}
],
"placeholder": "select option",
"label": "AD & Microsoft 365 Access"
},
{
"type": "Input.ChoiceSet",
"choices": [
{
"title": "Access Removed",
"value": "Access Blocked"
}
],
"placeholder": "Select the options",
"label": "Own Cloud (Report)",
"isRequired": true
},
{
"type": "Input.ChoiceSet",
"choices": [
{
"title": "Access Removed",
"value": "Partially Remove"
}
],
"placeholder": "Select the option",
"label": "System",
"isRequired": true
},
{
"type": "Input.ChoiceSet",
"choices": [
{
"title": "VPN Access Blocked",
"value": "VPN Access Removed"
}
],
"placeholder": "Select the Option",
"label": "VPN Access",
"isRequired": true
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}
/////////////////////////////////////////////////////////////////////////////