Hello community,
I'm working on an app where I'm working to calculate the break time duration of an employee. When I test my app on power apps it gives me the right value, but when I test my apps on teams it gives me the wrong value.

the formula expression which I am using to patch my break duration is:
Patch(SPlist,Defaults(SPlist){
BreakDuration : DateDiff(
DateTimeValue(
Bintime.Text,
"fr-FR"
),
Now(),
Minutes
)
})
Bintime is my label where im displaying my break start time and im using this in my formula too.