From 05b75d2241844d4858992b46335f1d141b680f1a Mon Sep 17 00:00:00 2001 From: Andrew Gregory Date: Wed, 23 Mar 2022 16:30:24 +0800 Subject: [PATCH] Update app.js Fix missing break. --- apps/authentiwatch/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/authentiwatch/app.js b/apps/authentiwatch/app.js index 3920ebddd..3a452b6e9 100644 --- a/apps/authentiwatch/app.js +++ b/apps/authentiwatch/app.js @@ -353,6 +353,7 @@ function onSwipe(e) { state.hotp.hotp = CALCULATING; drawToken(state.id); } + break; } timerCalc(); }