Hi
I want to display user profile photo in my app. I saved my photo in SharePoint. And added the share point link in my imageControl.image. And user can updated the image also.. But after updating the image, the image control is not replacing the old image with new image. After refreshing the page, image is displaying correctly. I want to display the image at the time of updation.
I am using flow for saving image
Attaching my code

code in image control. image
If(!wait,
uplodedImage
)
My upload button
Set(
wait,
true
);
Set(
uplodedImage,
"https://*******/test/" &UserId & "/" & UserName & "_" & UserId
);
Set(
wait,
false
);
How can I refresh my imagecontrol ?
How can I solve this