From a11c629193bfa092a2c71fbbddc1def65b2775ea Mon Sep 17 00:00:00 2001 From: TitanKuzmich Date: Wed, 11 Dec 2024 16:43:48 +0300 Subject: [PATCH] feat(plasma-new-hope): change MIN_COUNT value for Counter --- packages/plasma-new-hope/src/components/Counter/Counter.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plasma-new-hope/src/components/Counter/Counter.tsx b/packages/plasma-new-hope/src/components/Counter/Counter.tsx index 3f4151ffba..f49e3b81de 100644 --- a/packages/plasma-new-hope/src/components/Counter/Counter.tsx +++ b/packages/plasma-new-hope/src/components/Counter/Counter.tsx @@ -9,7 +9,7 @@ import type { CounterProps } from './Counter.types'; import { base } from './Counter.styles'; import { classes } from './Counter.tokens'; -const MIN_COUNT = 1; +const MIN_COUNT = 0; export const counterRoot = (Root: RootProps) => forwardRef((props, ref) => {