My code:
```readonly frequencyOptions: SelectItem<string>[];```
Select Item is defined like:
label: string | Observable<string>;
value: T | Observable<T>;
}```
In costructor:
``` this.frequencyOptions = this.sharedDataService.frequencyOptions;```
this.sharedDataService.frequencyOptions is equal to:
``` readonly frequencyOptions: SelectItem<string>[] = [
{ value: 'once', label: this.translate.stream(APP_TRANSLATIONS.common.frequency.interval.once) },
{ value: 'perMonth', label: this.translate.stream(APP_TRANSLATIONS.common.frequency.interval.perMonth) },
{ value: 'custom', label: this.translate.stream(APP_TRANSLATIONS.common.frequency.interval.custom) },
];```
and then this.frequencyOptions has those 3 elements in the array, how i can manually remove custom element from the this.frequencyOptions?