You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For round-off values, GMT is correct like for Pakistan its +5 so its ok, but for the areas with GMT offset with 30 minutes is invalid like in India GMT is acually +5:30 but its giving 5. airports.find((airport) => airport.code === 'AMD') is giving:
For round-off values, GMT is correct like for Pakistan its +5 so its ok, but for the areas with GMT offset with 30 minutes is invalid like in India GMT is acually +5:30 but its giving 5.
airports.find((airport) => airport.code === 'AMD')
is giving:whereas, it should be something like:
{..., offset: { gmt: '5:30', dst: '5:50' }}
or{..., offset: { gmt: 5.5, dst: 5.5 }}
The text was updated successfully, but these errors were encountered: