Skip to content

Commit

Permalink
chore: unwrap functions
Browse files Browse the repository at this point in the history
  • Loading branch information
KishenKumarrrrr committed Nov 22, 2024
1 parent f36beed commit 2357b7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/src/email/routes/email-callback.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ router.post(
'printConfirmSubscription',
() => EmailCallbackMiddleware.printConfirmSubscription
),
tracer.wrap('isAuthenticated', () => EmailCallbackMiddleware.isAuthenticated),
tracer.wrap('parseEvent', () => EmailCallbackMiddleware.parseEvent)
EmailCallbackMiddleware.isAuthenticated,
EmailCallbackMiddleware.parseEvent
)

export default router

0 comments on commit 2357b7e

Please sign in to comment.