From a2bc6f5bbab04a90bfc4ce098858e1d1c73581be Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 6 Dec 2024 17:20:16 +0900 Subject: [PATCH] Trim string for Hawaii Standard Time --- frontend/src/app/app.constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index 7cc4b4dff..0fe519a01 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -449,7 +449,7 @@ export interface Timezone { export const timezones: Timezone[] = [ { offset: '-12', name: 'Anywhere on Earth (AoE)' }, { offset: '-11', name: 'Samoa Standard Time (SST)' }, - { offset: '-10', name: 'Hawaii-Aleutian Standard Time (HST)' }, + { offset: '-10', name: 'Hawaii Standard Time (HST)' }, { offset: '-9', name: 'Alaska Standard Time (AKST)' }, { offset: '-8', name: 'Pacific Standard Time (PST)' }, { offset: '-7', name: 'Mountain Standard Time (MST)' },