I started this flow a while back and need to expand on it. The action I've used before is no longer available, or has changed significantly. What's the work around for this and why is it far more difficult now than it used to be? Is Edit Adaptive Card permanently removed from PowerAutomate? (Totally not cool!)

{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.2",
"body": [
{
"type": "TextBlock",
"weight": "Bolder",
"size": "ExtraLarge",
"text": "An Employment Application has been submitted!",
"color": "Attention"
},
{
"type": "TextBlock",
"text": "Hey Anthony, \n{$root.First} {$root.Last} just submitted a new Employment Application. ",
"isSubtle": true,
"wrap": true
},
{
"type": "TextBlock",
"text": "DETAILS \n\nName: {$root.First} {$root.Last}\n\nPhone: {$root.Mobile}\n\nEmail: {$root.Email}"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Cool",
"id": "cool"
},
{
"title": "Not Cool",
"type": "Action.Submit",
"id": "notcool"
}
]
}