Hi,
We have noticed the SharePoint trigger "When a file is created in a folder (deprecated)" is deprecated, thus we want to replace the trigger with another one which is not deprecated.
The flow in which we use this trigger is used to process CSV files, thus the trigger is followed by a Compose action:

The idea is to replace the trigger with "When a file is created (properties only)" followed by an Get file content action and the Compose action.
The output of the Get file action is something like:
{
"$content-type": "application/octet-stream",
"$content": "//5EAGUAd"
}
in the compose action we try to grab the data of $content, but this fails for us.
We tried with this expression;
json(decodeBase64(body('Get_file_content')?['$content']))
But receive below error:

Does anybody have a thought how to replace the deprecated trigger and process the CSV files like we did before?
Thanks in advance,
Peter