diff --git a/apps/rest/rest.app.js b/apps/rest/rest.app.js index 8564d8206..e0aeb558f 100644 --- a/apps/rest/rest.app.js +++ b/apps/rest/rest.app.js @@ -232,11 +232,11 @@ const onTouchPerQuadrantPerMode = { SET_REST: [ [MAIN_MENU, Bangle.buzz], [null, null], [null, () => { - restSeconds = Math.min(120, Math.max(0, restSeconds - 15)); + restSeconds = Math.min(600, Math.max(0, restSeconds - 15)); Bangle.buzz(100); }], [null, () => { - restSeconds = Math.min(120, Math.max(0, restSeconds + 15)); + restSeconds = Math.min(600, Math.max(0, restSeconds + 15)); Bangle.buzz(100); }], ],