diff --git a/components/InactivityNoticeCard.tsx b/components/InactivityNoticeCard.tsx
index 91ca9c2..f2e6de7 100644
--- a/components/InactivityNoticeCard.tsx
+++ b/components/InactivityNoticeCard.tsx
@@ -91,11 +91,19 @@ export default function (
Start Date
- {new Date(props.start).toLocaleDateString()}
+
+ {new Date(props.start).toLocaleDateString(undefined, {
+ timeZone: "utc",
+ })}
+
End Date
- {new Date(props.end).toLocaleDateString()}
+
+ {new Date(props.end).toLocaleDateString(undefined, {
+ timeZone: "utc",
+ })}
+
{typeof props.hiatus === "boolean" ? (