It looks like you've added a Choice field to your SharePoint List called Status with options Approved, Rejected, etc.
When using Choice fields in Power Automate you get two fields to choose from. In your case you will have Status which contains the Id and Value, and another field called Status Value that just contains the value of the field (Approved, Rejected, etc.).

So, in your Condition, you should be using the Status Value as so:

If you were only interested in getting the approved items, then I'd suggest using the Filter Query within Get items. Then you don't even need to add the Condition within the Apply to each since you only retrieved approved items.
The Filter Query in your case would be:
Status eq 'Approved'
