Skip to content

Commit

Permalink
CMS-603: Update 'last updated' field to use local timezone. (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
diego-oxd authored Jan 15, 2025
1 parent 554db53 commit 4e231cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/ParkDetailsSeason.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default function ParkSeason({ season }) {
// @TODO: implement logic to disable preview button
const disablePreviewButton = true;

const updateDate = formatDate(season.updatedAt);
const updateDate = formatDate(season.updatedAt, "America/Vancouver");

async function navigateToEdit() {
if (season.status === "pending review") {
Expand Down

0 comments on commit 4e231cd

Please sign in to comment.