Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
nitedani committed Jan 27, 2024
1 parent 5b8f54d commit ad9cf9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/basic/pages/index/+Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const DateTime = ({ date, format }: { date: Date; format: (date: Date) => string
localFormattedDate = allFormattedDates[localOffsetHours]
} else {
//@ts-ignore
localFormattedDate = window[`localFormattedDate${key}`]
localFormattedDate = window[`localFormattedDate${key}`] ?? format(date)
}

return (
Expand Down

0 comments on commit ad9cf9c

Please sign in to comment.