From 011651584fd32c6df4757484b162e3e46e5c7c0d Mon Sep 17 00:00:00 2001 From: Nicolas Molina Date: Fri, 16 Aug 2024 16:51:33 -0400 Subject: [PATCH] chore(edit-content): use the new angular syntax --- .../lib/feature/edit-content/edit-content.layout.component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core-web/libs/edit-content/src/lib/feature/edit-content/edit-content.layout.component.ts b/core-web/libs/edit-content/src/lib/feature/edit-content/edit-content.layout.component.ts index b3ce29be5b1e..f7b4fa69169c 100644 --- a/core-web/libs/edit-content/src/lib/feature/edit-content/edit-content.layout.component.ts +++ b/core-web/libs/edit-content/src/lib/feature/edit-content/edit-content.layout.component.ts @@ -1,6 +1,6 @@ import { Observable, forkJoin, of } from 'rxjs'; -import { AsyncPipe, JsonPipe } from '@angular/common'; +import { AsyncPipe } from '@angular/common'; import { ChangeDetectionStrategy, Component, OnInit, inject } from '@angular/core'; import { ActivatedRoute, RouterLink } from '@angular/router'; @@ -31,7 +31,6 @@ import { DotEditContentService } from '../../services/dot-edit-content.service'; selector: 'dot-edit-content-form-layout', standalone: true, imports: [ - JsonPipe, AsyncPipe, DotMessagePipe, ButtonModule,