Fix some lint errors

This commit is contained in:
Przemek Więch
2026-04-28 23:28:52 +02:00
parent 0443741537
commit 36852348a8
4 changed files with 7 additions and 9 deletions

View File

@@ -54,7 +54,7 @@ async function loadGedzip(
let gedcom = undefined;
const images = new Map<string, string>();
for (let fileName of Object.keys(unzipped)) {
for (const fileName of Object.keys(unzipped)) {
if (fileName.endsWith('.ged')) {
if (gedcom) {
console.warn('Multiple GEDCOM files found in zip archive.');