ba-cafe-timer

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit cbd69a03cd5d0eef10e97a127feafcf0db27ede8
parent 8081b257e63a6fa83cfbd34ccc5a9a5d06e09d4a
Author: minerva-jupiter <ryouturn@gmail.com>
Date:   Thu, 22 Jan 2026 07:35:52 +0900

fix(presets): Correct 'normal' settedTime duration from 3 minutes to 3 hours

Diffstat:
Mlib/presets.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/presets.ts b/lib/presets.ts @@ -7,7 +7,7 @@ export const notifMessages: Record<TapKind, string> = { }; export const settedTime: Record<TapKind, number> = { - normal: 3 * 60 * 1000, + normal: 3 * 60 * 60 * 1000, ticket1: 22 * 60 * 60 * 1000, ticket2: 22 * 60 * 1000, };