build: fix "Cannot read properties of undefined (reading '0')" 2

This commit is contained in:
Johannes Millan 2022-01-28 16:42:43 +01:00
parent 4054934205
commit 8768376f12
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
import { nanoid } from 'nanoid';
import { Injectable } from '@angular/core';
import { SnackService } from '../snack/snack.service';
import { nanoid } from 'nanoid';
import { T } from '../../t.const';
@Injectable({ providedIn: 'root' })

View file

@ -1,8 +1,8 @@
import { nanoid } from 'nanoid';
import { Injectable } from '@angular/core';
import { PersistenceService } from '../../core/persistence/persistence.service';
import { RecurringConfig, Reminder, ReminderCopy, ReminderType } from './reminder.model';
import { SnackService } from '../../core/snack/snack.service';
import { nanoid } from 'nanoid';
import { BehaviorSubject, Observable, ReplaySubject, Subject } from 'rxjs';
import { dirtyDeepCopy } from '../../util/dirtyDeepCopy';
import { ImexMetaService } from '../../imex/imex-meta/imex-meta.service';