Hi @craiganderson ,
What environment are you running? You can use the code below to check the environment’s timezone.
const now = new Date();
// Time as an ISO string
console.log("Time ISO " + now.toISOString());
// timezone offset
console.log("Timezone Offset: " + now.getTimezoneOffset());
// time in the local timezone
console.log("LocalTime: " + now.toLocaleString());
==================================================
Result:
Time ISO: 2024-07-06T03:52:20.911Z
Timezone Offset: -420
Local Time: 7/6/2024, 10:52:20 AM
If it’s helpful with you, please give me a like and mark it as a solution.
Thanks in advance.