From 42dbf9736ec3d8d15dc3952a5c02643647124fe4 Mon Sep 17 00:00:00 2001 From: Evert Prants Date: Sun, 20 Mar 2022 20:27:09 +0200 Subject: [PATCH] totp oops --- src/modules/features/login/login.controller.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/modules/features/login/login.controller.ts b/src/modules/features/login/login.controller.ts index 4cc0986..6939d4f 100644 --- a/src/modules/features/login/login.controller.ts +++ b/src/modules/features/login/login.controller.ts @@ -102,10 +102,7 @@ export class LoginController { return; } - res.render( - 'login/totp-verify', - this.formUtil.populateTemplate(req, session), - ); + res.render('login/totp-verify', this.formUtil.populateTemplate(req)); } @Post('verify')