fix ts error on parser

This commit is contained in:
Amruth Pillai
2023-11-22 23:04:44 +01:00
parent 6c7ca9472f
commit 37c17ce8f3

View File

@ -157,7 +157,7 @@ export class LinkedInParser implements Parser<JSZip, LinkedIn> {
id: createId(),
name: project.Title,
description: project.Description,
url: { ...defaultProject.url, href: project.Url },
url: { ...defaultProject.url, href: project.Url ?? "" },
date: `${project["Started On"]} - ${project["Finished On"] ?? "Present"}`,
});
}