Remove log messages

This commit is contained in:
2025-06-20 21:02:05 +02:00
parent 63c7624a00
commit e13b5f2cdc
2 changed files with 0 additions and 2 deletions

View File

@@ -108,7 +108,6 @@ export class EditEntryComponent implements OnInit {
.pipe(
takeUntilDestroyed(this.destroyRef),
tap((car) => {
console.log('Selected car changed (edit entry):', car);
this.selectedCarService.setSelectedCarId(car?.id ?? null);
})
)

View File

@@ -121,7 +121,6 @@ export class EntriesComponent implements OnInit {
.pipe(
takeUntilDestroyed(this.destroyRef),
tap((car) => {
console.log('Selected car changed (entries):', car);
this.selectedCarService.setSelectedCarId(car?.id ?? null);
})
)