Hello,
I have created the file upload feature and automate flow to save the uploaded file to the Share Point.
But, the preview of the uploaded file is blank and the file cannot be viewed since it shows as follows.

File uploading formula is as follows.
ForAll(
fileUploadCol,
fileUploadSP.Run(
{
contentBytes: fileUploadCol[@Value],
name: fileUploadCol[@Name] }
)
);
And the automate flow is as follows.

Is there anything wrong with my flow and formula? And how could I solve it?
Thanks.