Remove log messages
This commit is contained in:
@@ -108,7 +108,6 @@ export class EditEntryComponent implements OnInit {
|
|||||||
.pipe(
|
.pipe(
|
||||||
takeUntilDestroyed(this.destroyRef),
|
takeUntilDestroyed(this.destroyRef),
|
||||||
tap((car) => {
|
tap((car) => {
|
||||||
console.log('Selected car changed (edit entry):', car);
|
|
||||||
this.selectedCarService.setSelectedCarId(car?.id ?? null);
|
this.selectedCarService.setSelectedCarId(car?.id ?? null);
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -121,7 +121,6 @@ export class EntriesComponent implements OnInit {
|
|||||||
.pipe(
|
.pipe(
|
||||||
takeUntilDestroyed(this.destroyRef),
|
takeUntilDestroyed(this.destroyRef),
|
||||||
tap((car) => {
|
tap((car) => {
|
||||||
console.log('Selected car changed (entries):', car);
|
|
||||||
this.selectedCarService.setSelectedCarId(car?.id ?? null);
|
this.selectedCarService.setSelectedCarId(car?.id ?? null);
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user