fix: e2e linting

pull/28659/head
Daniel Dietzler 2026-05-28 10:49:04 +02:00
parent 26714f6bfe
commit c8525c3a3a
No known key found for this signature in database
GPG Key ID: A1C0B97CD8E18DFF
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ export function toColumnarFormat(assets: MockTimelineAsset[]): TimeBucketAssetRe
result.duration.push(asset.duration);
result.projectionType.push(asset.projectionType);
result.livePhotoVideoId.push(asset.livePhotoVideoId);
result.city.push(asset.city);
result.country.push(asset.country);
result.city?.push(asset.city);
result.country?.push(asset.country);
result.visibility.push(asset.visibility);
}