mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 08:13:49 +10:00
Fix build
This commit is contained in:
@ -55,7 +55,7 @@ export class LinkedInParser implements Parser<JSZip, LinkedIn> {
|
||||
|
||||
convert(data: LinkedIn) {
|
||||
const result = JSON.parse(JSON.stringify(defaultResumeData)) as ResumeData;
|
||||
function avoidTooShort(name, len) {
|
||||
function avoidTooShort(name: string, len: number) {
|
||||
if (!name || name.length<len) {
|
||||
return "Unknown";
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user