* current time in user timezone, let ai handle 401 * update agent.ts * simple onboarding for non cal.com users * reverting this line - unecessary * v1.0.1
6 lines
116 B
TypeScript
6 lines
116 B
TypeScript
export default function now(timeZone: string) {
|
|
return new Date().toLocaleString("en-US", {
|
|
timeZone,
|
|
});
|
|
}
|