Remove log messages
This commit is contained in:
@@ -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);
|
||||
})
|
||||
)
|
||||
|
||||
@@ -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);
|
||||
})
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user