remove console logs

This commit is contained in:
Peter Maquiran
2024-10-24 10:50:46 +01:00
parent 08f68940dc
commit 41dfb448dd
7 changed files with 10 additions and 220 deletions
-4
View File
@@ -40,10 +40,8 @@ import { map, throttleTime } from 'rxjs/operators';
import { TracingType, XTracerAsync } from 'src/app/services/monitoring/opentelemetry/tracer';
import { isHttpError } from 'src/app/services/http.service';
import { ToastService } from 'src/app/services/toast.service';
import { Store } from '@ngrx/store';
import { NotificationRepositoryService } from 'src/app/module/notification/data/notification-repository.service';
import { EEventFilterStatus } from 'src/app/module/agenda/data/dto/enums';
import { CalendarState, selectEventSource } from 'src/app/module/agenda/data/data-source/agenda-memory-source.service';
// import { Unsubscribable } from '../../../../android/app/build/intermediates/assets/debug/public/assets/dexie/dist/dexie';
@Component({
@@ -189,7 +187,6 @@ export class AgendaPage implements OnInit {
showCalendarField = false
hasChangeCalendar = false
eventSource$ = this.store.select(selectEventSource);
private NotificationUpdate = new Subject<void>();
listenToEventNotificationSubscription!: Subscription;
@@ -207,7 +204,6 @@ export class AgendaPage implements OnInit {
public RoleIdService: RoleIdService,
public AgendaDataRepositoryService: AgendaDataRepositoryService,
private toastService: ToastService,
private store: Store<CalendarState>,
private notificationRepository: NotificationRepositoryService
) {