I have created a weather app for my portfolio and noticed when I published it to the web and looked at my mobile device that the days of the week do not show. I tried troubleshooting and viewed on different browsers. Turns out that it displays on every browser except Safari. Was wondering what the issue is or how I could get this to work.
[![This is how it should display and does fine on Chrome and Firefox][1]](https://i.stack.imgur.com/gWi39.png)
threeDailyWeather.map((item) => (
<div
key={item.datetimeEpoch}
className='flex flex-col justify-between items-center p-2 bg-[rgba(3,15,30,0.65)] rounded-md'
>
<p className='text-[1rem]'>
{convertDate(item.datetime)}
</p>
<img
src={setIconDisplay(item.icon)}
className='max-w-[50px] h-[auto] mt-2'
/>
<p className='text-[12px] my-2'>{item.conditions}</p>
<p className='text-[48px] text-[rgb(38,127,234)] font-semibold leading-none'>
{convertTemp(item.temp)}°
</p>
</div>
))```