Skip to content

Commit

Permalink
Fix two typos that went unnoticed
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloDinella committed Dec 6, 2024
1 parent 8894870 commit d68bbad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export function ArrangementCardTitle({
{startedAtEditor.editing ? (
<>
<DatePicker
label="When was this arrangement started???"
label="When was this arrangement started?"
value={startedAtEditor.value}
disableFuture
format="M/d/yyyy"
Expand Down
2 changes: 1 addition & 1 deletion src/caretogether-pwa/src/Utilities/dateUtils.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export function formatUtcDateOnly(input: Date) {
// format date only to en-US date format, wihtout time zone offsetting
// format date only to en-US date format, without time zone offsetting
// 2025-11-22T00:00:00.000Z will output 11/22/2025, independently of browser's time zone
return new Intl.DateTimeFormat('en-US', {
timeZone: 'UTC',
Expand Down

0 comments on commit d68bbad

Please sign in to comment.