Skip to content

Commit

Permalink
Better format copy about timezones
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Jul 3, 2024
1 parent 2f24f22 commit 1b25aa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/InputTypes/TimeZone.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,9 @@ class TimeZone extends React.Component<TimeZoneProps> {
return (
<>
<div css={copyStyles}>
{tz ? FOUND_COPY : NOT_FOUND_COPY}
<p>{tz ? FOUND_COPY : NOT_FOUND_COPY}</p>

Timezones are displayed as offsets from UTC. For example, UTC+1 is one hour ahead of UTC, and UTC-5 is five hours behind UTC.
<p>Timezones are displayed as offsets from UTC. For example, UTC+1 is one hour ahead of UTC, and UTC-5 is five hours behind UTC.</p>
</div>
<div css={[containerStyles, arrowStyles, optionContainerStyles, invalidStyles]} onFocus={this.focusOption.bind(this)} ref={container_ref} onBlur={this.props.onBlurHandler}>
<div css={mainWindowStyles} className={!this.props.valid ? "invalid-box selected_container" : "selected_container"}>
Expand Down

0 comments on commit 1b25aa2

Please sign in to comment.