diff --git a/bizmatch/src/app/pages/subscription/account/account.component.ts b/bizmatch/src/app/pages/subscription/account/account.component.ts index be5f71b..e14b316 100644 --- a/bizmatch/src/app/pages/subscription/account/account.component.ts +++ b/bizmatch/src/app/pages/subscription/account/account.component.ts @@ -3,7 +3,7 @@ import { ChangeDetectorRef, Component } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; import { APP_ICONS } from '../../../utils/fontawesome-icons'; import { NgSelectModule } from '@ng-select/ng-select'; -import { QuillModule, provideQuillConfig } from 'ngx-quill'; +import { QuillModule } from 'ngx-quill'; import { lastValueFrom } from 'rxjs'; import { User } from '../../../../../../bizmatch-server/src/models/db.model'; import { AutoCompleteCompleteEvent, Invoice, UploadParams, ValidationMessage, emailToDirName } from '../../../../../../bizmatch-server/src/models/main.model'; diff --git a/bizmatch/src/app/pages/subscription/edit-business-listing/edit-business-listing.component.ts b/bizmatch/src/app/pages/subscription/edit-business-listing/edit-business-listing.component.ts index 380fcac..b030fa5 100644 --- a/bizmatch/src/app/pages/subscription/edit-business-listing/edit-business-listing.component.ts +++ b/bizmatch/src/app/pages/subscription/edit-business-listing/edit-business-listing.component.ts @@ -48,20 +48,6 @@ import { TOOLBAR_OPTIONS } from '../../utils/defaults'; ValidatedTextareaComponent, ValidatedLocationComponent, ], - providers: [ - provideQuillConfig({ - modules: { - syntax: true, - toolbar: [ - ['bold', 'italic', 'underline'], - [{ header: [1, 2, 3, false] }], - [{ list: 'ordered' }, { list: 'bullet' }], - [{ color: [] }], - ['clean'], - ], - }, - }) as any, - ], templateUrl: './edit-business-listing.component.html', styleUrls: [ './edit-business-listing.component.scss', diff --git a/bizmatch/src/app/pages/subscription/edit-commercial-property-listing/edit-commercial-property-listing.component.ts b/bizmatch/src/app/pages/subscription/edit-commercial-property-listing/edit-commercial-property-listing.component.ts index 86105dc..c70f450 100644 --- a/bizmatch/src/app/pages/subscription/edit-commercial-property-listing/edit-commercial-property-listing.component.ts +++ b/bizmatch/src/app/pages/subscription/edit-commercial-property-listing/edit-commercial-property-listing.component.ts @@ -11,7 +11,7 @@ import { APP_ICONS } from '../../../utils/fontawesome-icons'; import { NgSelectModule } from '@ng-select/ng-select'; import { NgxCurrencyDirective } from 'ngx-currency'; import { ImageCropperComponent } from 'ngx-image-cropper'; -import { QuillModule, provideQuillConfig } from 'ngx-quill'; +import { QuillModule } from 'ngx-quill'; import { BusinessListing, CommercialPropertyListing, User } from '../../../../../../bizmatch-server/src/models/db.model'; import { AutoCompleteCompleteEvent, ImageProperty, UploadParams, createDefaultCommercialPropertyListing, emailToDirName } from '../../../../../../bizmatch-server/src/models/main.model'; @@ -53,20 +53,6 @@ import { TOOLBAR_OPTIONS } from '../../utils/defaults'; ValidatedLocationComponent, ImageCropAndUploadComponent, ], - providers: [ - provideQuillConfig({ - modules: { - syntax: true, - toolbar: [ - ['bold', 'italic', 'underline'], - [{ header: [1, 2, 3, false] }], - [{ list: 'ordered' }, { list: 'bullet' }], - [{ color: [] }], - ['clean'], - ], - }, - }) as any, - ], templateUrl: './edit-commercial-property-listing.component.html', styleUrls: [ './edit-commercial-property-listing.component.scss',