The steps you have taken}
I have created a scenario where I want to send a google task to clickup, but the task in google task always appears with due date different than in google calendar. But it appears to be the previews day.
I have tried to format date with time zone based on my location, but I found that google task sends always the same hour no matter the hour fixed on google calendar.
Every task I import via google tasks has the same due time - 5pm yesterday.
Below are all trials I’ve done with different times trying to set up a sync from google tasks to todoist, but you can see that they all say the same time
Ok I think I figured it out. It is because of the time zone. Google tasks seems to exclusively use UTC, so I added parseDate to all the dates going into and coming out of it to make sure it’s being sent in my time zone (EST). It SEEMS to be working now… but we’ll have to see if anything else comes up.
From Tasks to Notion:
{{parseDate(3.due; “YYYY-MM-DD hh:mm a”; “America/New_York”)}}
From Notion to Tasks:
{{parseDate(1.properties_value.Due.start; “YYYY-MM-DD hh:mm a”; “America/New_York”)}}