fixed imports. Maybe.

This commit is contained in:
Eric Gullickson
2025-08-23 11:28:01 -05:00
parent 8374f1ee66
commit 5f67a904e0
5 changed files with 7 additions and 7 deletions

View File

@@ -70,7 +70,7 @@ export class VehiclesService {
// Get from database
const vehicles = await this.repository.findByUserId(userId);
const response = vehicles.map(v => this.toResponse(v));
const response = vehicles.map((v: Vehicle) => this.toResponse(v));
// Cache result
await cacheService.set(cacheKey, response, this.listCacheTTL);