From fff18e05c020edb63c1131db4f5bd4163d418d34 Mon Sep 17 00:00:00 2001 From: ncoronel Date: Tue, 7 Jul 2026 16:42:27 -0300 Subject: [PATCH] refactor(cart): remove CartCopiaComponent and related references from test page --- .../reutilizables-test-page.component.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/app/features/componentes-test/pages/reutilizables-test-page/reutilizables-test-page.component.ts b/src/app/features/componentes-test/pages/reutilizables-test-page/reutilizables-test-page.component.ts index 1f75211..4a16cbd 100644 --- a/src/app/features/componentes-test/pages/reutilizables-test-page/reutilizables-test-page.component.ts +++ b/src/app/features/componentes-test/pages/reutilizables-test-page/reutilizables-test-page.component.ts @@ -4,7 +4,6 @@ import { CartComponent, CartItemMock } from '../../../../shared/components/cart/cart.component'; -import { CartCopiaComponent } from '../../../../shared/components/cart-copia/cart-copia.component'; import { CartIconComponent } from '../../../../shared/components/cart-icon/cart-icon.component'; import { IconButtonComponent } from '../../../../shared/components/icon-button/icon-button.component'; import { InputComponent } from '../../../../shared/components/input/input.component'; @@ -22,7 +21,6 @@ import { StepComponent } from '../../../../shared/components/stepper/step.compon imports: [ ButtonComponent, CartComponent, - CartCopiaComponent, InputComponent, PaginatorComponent, ProductCardComponent, @@ -60,7 +58,6 @@ export class ReutilizablesTestPageComponent { protected editableDisabled = true; protected currentPage = 1; protected cartVisible = true; - protected cartCopiaVisible = true; protected lastModalResult = 'Todavia no se abrio ningun modal.'; protected readonly paginatorTotalPages = 8; protected readonly cartBackgroundColor = '#ffffff'; @@ -163,7 +160,6 @@ export class ReutilizablesTestPageComponent { this.toastService.info('Se disparo el evento de cerrado del carrito mock.'); } - protected triggerToast(type: 'success' | 'danger' | 'info'): void { if (type === 'success') { this.toastService.success( @@ -262,3 +258,4 @@ export class ReutilizablesTestPageComponent { } } +