From 535f0e8532d7471f39e9710cab24477977e46a66 Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Fri, 9 Feb 2024 18:00:09 -0800 Subject: [PATCH] Use longGeneric instead of longOffset for time zone name longOffset shows the time zone as "GMT-08:00" which may be confusing or force the user to think for a second before realizing that it's their local timezone. longGeneric shows the time zone as "Pacific Time" which should be clearer. --- .../console/project-[project]/messaging/wizard/step3.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/console/project-[project]/messaging/wizard/step3.svelte b/src/routes/console/project-[project]/messaging/wizard/step3.svelte index fce6731eeb..58ecd6409a 100644 --- a/src/routes/console/project-[project]/messaging/wizard/step3.svelte +++ b/src/routes/console/project-[project]/messaging/wizard/step3.svelte @@ -24,7 +24,7 @@ hour: 'numeric', minute: 'numeric', hourCycle: 'h23', - timeZoneName: 'longOffset' + timeZoneName: 'longGeneric' }; async function beforeSubmit() {