mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-27 02:14:50 +10:00
revert structuredClone as it is not supported on proxy objects
This commit is contained in:
@@ -57,7 +57,7 @@ export class LinkedInParser implements Parser<JSZip, LinkedIn> {
|
||||
}
|
||||
|
||||
convert(data: LinkedIn) {
|
||||
const result = structuredClone(defaultResumeData);
|
||||
const result = JSON.parse(JSON.stringify(defaultResumeData));
|
||||
|
||||
// Profile
|
||||
if (data.Profile && data.Profile.length > 0) {
|
||||
|
||||
Reference in New Issue
Block a user