(value?: string)
| 8 | } |
| 9 | |
| 10 | function normalizeLookupValue(value?: string): string | undefined { |
| 11 | const trimmed = value?.trim(); |
| 12 | return trimmed && trimmed.length > 0 ? trimmed : undefined; |
| 13 | } |
| 14 | |
| 15 | function formatAmbiguousTaskMatches(tasks: TaskInfo[]): string { |
| 16 | return tasks |