Hi everyone, I've built a flow that has run successfully a few times. Today I've gone to run the process again and it bypasses my "Apply_to_each" so none of the actions within are processed.
The flow is triggered by a file being added to a SharePoint folder. The data is captured from the file, and then I use the "Apply_to_each" to process the data. There's definitely data there as I have checked the Compose output before the "Apply_to_each".
Does anyone know why this might be happening? The flow "succeeds" but none of the actions actually happen.


Compose is:
split(outputs('Get_file_content')?['body'], decodeUriComponent('%0D%0A'))
Apply_to_each is:
skip(outputs('Compose'),1)
Compose 5:
replace(item(),' ',',')
Compose 2:
split(outputs('Compose_5'),',')