diff --git a/src/main.ts b/src/main.ts index f35ff96..8820ecc 100644 --- a/src/main.ts +++ b/src/main.ts @@ -23,7 +23,7 @@ const main = async () => { let workDayDuration: Duration | undefined = undefined; const durationAnswer = await rl.question( - `How long is your work day today, excluding the lunch break? [${defaultWorkDayDuration.format('HH:mm')}] `, + `How long is your work day today, excluding the lunch break? [${formatDuration(defaultWorkDayDuration)}] `, ); if (durationAnswer !== '') { workDayDuration = parseDuration(durationAnswer);