(date: Date)
| 12 | } |
| 13 | |
| 14 | function formatTimeForInput(date: Date): string { |
| 15 | const hours = String(date.getHours()).padStart(2, "0"); |
| 16 | const minutes = String(date.getMinutes()).padStart(2, "0"); |
| 17 | return `${hours}:${minutes}`; |
| 18 | } |
| 19 | |
| 20 | export function buildTimeblockPrefillForTask( |
| 21 | task: TaskInfo, |
no outgoing calls
no test coverage detected