export function humanAttachmentTitle(title: string | undefined): string { return title === "" || title === undefined ? "Untitled attachment" : title; }