I'm using simple date pipe to format date which is working fine on web and android browsers but on IOS it's showing nothing. If I remove the PIPE and display data then it's shown but not with the PIPE.
{{race.race_date | date:'M/d/y'}}
You can check this issue on Issue link
Backend is returning data correctly.
race.race_date
is a Date object, a number (milliseconds since UTC epoch), or an ISO string ?? – Elmoelmore