fix: customer create at (#7132)

This commit is contained in:
darkskygit 2024-06-05 08:01:12 +00:00
parent a5f9bfdda9
commit 928e133655
No known key found for this signature in database
GPG Key ID: 97B7D036B1566E9D

View File

@ -181,7 +181,7 @@ export class UserService {
const payload = {
name: user.name,
email: user.email,
created_at: Number(user.createdAt),
created_at: Number(user.createdAt) / 1000,
};
try {
await fetch(`https://track.customer.io/api/v1/customers/${user.id}`, {