Skip to content

Commit

Permalink
fix: isDuplicate check
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidtnz committed Dec 10, 2024
1 parent 9657405 commit a704b3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/tileindex-validate/tileindex.validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ export const commandTileIndexValidate = command({
return Projection.get(epsg).boundsToGeoJsonFeature(Bounds.fromBbox(loc.bbox), {
source: loc.source,
tileName: loc.tileNames.join(', '),
isDuplicate: true, // (outputs.get(loc.tileNames)?.length ?? 1) > 1,
isDuplicate: (outputs.get(loc.tileNames.join(', '))?.length ?? 1) > 1,
});
}),
});
Expand Down

0 comments on commit a704b3a

Please sign in to comment.