From 868dd0a9e40fdd278ebc5221a733e04eda56dc86 Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Fri, 22 Aug 2025 23:38:36 -0300 Subject: [PATCH] fix: corrects checked output description --- .../my-wallet-ds/src/lib/atoms/checkbox/checkbox.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/my-wallet-ds/src/lib/atoms/checkbox/checkbox.component.ts b/projects/my-wallet-ds/src/lib/atoms/checkbox/checkbox.component.ts index 457551a..3d9d572 100644 --- a/projects/my-wallet-ds/src/lib/atoms/checkbox/checkbox.component.ts +++ b/projects/my-wallet-ds/src/lib/atoms/checkbox/checkbox.component.ts @@ -9,7 +9,7 @@ import { Component, output } from '@angular/core'; }) export class CheckboxComponent { /** - * @description Emits true if checked, false otherwise + * @description Emitted when the checkbox is clicked */ checked = output(); }