MOB-1091: rm unnecessary BackupMapping type predicate

This commit is contained in:
sepeterson
2026-04-10 11:08:29 -05:00
parent 1927c0945d
commit a91fcbc7ce

View File

@@ -56,7 +56,7 @@ export const backupObservationPhotos = async (
);
const mappings = results.filter(
( m ): m is BackupMapping => m !== null,
m => m !== null,
);
logger.info(
`backupObservationPhotos: backed up ${mappings.length} photos`,