From 68e3832c0cb02abcbb7005400363daf62c8914ce Mon Sep 17 00:00:00 2001 From: "Blades, Stephen" Date: Wed, 16 Mar 2022 12:34:10 -0500 Subject: [PATCH] docs: spelling error --- stories/guides/Dates.stories.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stories/guides/Dates.stories.mdx b/stories/guides/Dates.stories.mdx index 49908a525..0323d1f76 100644 --- a/stories/guides/Dates.stories.mdx +++ b/stories/guides/Dates.stories.mdx @@ -37,6 +37,6 @@ const events = [ ] ``` -The other thing to remember is that the `Date`s you provide to the Calendar will, by default, be displayed in the browser's native local timezone and culture, regarless of any offsets. This is how JS `Date`s work in browsers today. If you need to display dates and times in a specific timezone, other than the browser native, then you should review our Timezones Guide on using a localizer that supports timezone conversions. +The other thing to remember is that the `Date`s you provide to the Calendar will, by default, be displayed in the browser's native local timezone and culture, regardless of any offsets. This is how JS `Date`s work in browsers today. If you need to display dates and times in a specific timezone, other than the browser native, then you should review our Timezones Guide on using a localizer that supports timezone conversions. **Side Note:** Storing your date/time values in UTC (Zulu) date format (YYYY-MM-DDTHH:mm:ssZ) will make these types of transformations much easier to work with.