diff --git a/packages/ui-services/src/Import/SimplenoteConverter/SimplenoteConverter.ts b/packages/ui-services/src/Import/SimplenoteConverter/SimplenoteConverter.ts index a6144581c62..98e4d7a9dce 100644 --- a/packages/ui-services/src/Import/SimplenoteConverter/SimplenoteConverter.ts +++ b/packages/ui-services/src/Import/SimplenoteConverter/SimplenoteConverter.ts @@ -12,7 +12,8 @@ type SimplenoteData = { } // eslint-disable-next-line @typescript-eslint/no-explicit-any -const isSimplenoteEntry = (entry: any): boolean => entry.id && entry.content && entry.creationDate && entry.lastModified +const isSimplenoteEntry = (entry: any): boolean => + entry.id && entry.content != undefined && entry.creationDate && entry.lastModified export class SimplenoteConverter implements Converter { constructor() {}