diff --git a/components/Time.tsx b/components/Time.tsx index e272973..b4d4da5 100644 --- a/components/Time.tsx +++ b/components/Time.tsx @@ -14,7 +14,7 @@ const Timer = () => { return(
-

{date.toLocaleDateString('en-GB', { dateStyle: 'short' }) + ' • ' + date.toLocaleTimeString('en-GB', { timeStyle: 'medium', hour12: true}).toUpperCase()}

+

{date.toLocaleDateString('en-GB', { dateStyle: 'short' }) + ' • ' + date.toLocaleTimeString('en-GB', { timeStyle: 'medium', hour12: true, timeZone: 'Europe/Budapest'}).toUpperCase()}

) }