From d2ea11dd79eff2cb69b58bc20701e6339d02aace Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Sun, 12 Jan 2025 17:21:19 -0600 Subject: [PATCH] Tweak timezone code --- src/utility/timezone.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utility/timezone.ts b/src/utility/timezone.ts index c9836fef..ba2b689b 100644 --- a/src/utility/timezone.ts +++ b/src/utility/timezone.ts @@ -4,9 +4,9 @@ import { getCookie, storeCookie } from './cookie'; // string: timezone // undefined: timezone must be resolved on the client // null: timezone not required -export type Timezone = string | null | undefined; +export type Timezone = string | undefined | null; -export const TIMEZONE_COOKIE_NAME = 'client-timezone'; +export const TIMEZONE_COOKIE_NAME = 'timezone-client'; export const storeTimezoneCookie = () => storeCookie(