Skip to content

Commit

Permalink
fix timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacavallaro committed Dec 3, 2024
1 parent 5e1ce96 commit a752fae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/op-app/src/use-cases/send-event-messge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@ export class SendEventMessageUseCase {
const auditEvent = auditEventSchema.parse({
blobName: blobName,
data: {
ipAddress: ipAddress,
requestParams: requestParams,
timestamp: new Date().getSeconds(),
userData: userData,
ipAddress,
requestParams,
timestamp: Date.now(),
userData,
},
type: "rpStep",
});
Expand Down

0 comments on commit a752fae

Please sign in to comment.