From c4c566f395c5b9d5c5b4d828ff6f92db70c44fdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?LEGRELLE=2C=20F=C3=A9lix?= Date: Tue, 17 Dec 2024 10:37:39 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20price=20align?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/react/components/price/Price.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react/components/price/Price.tsx b/packages/react/components/price/Price.tsx index ea603d9c..731a93b7 100644 --- a/packages/react/components/price/Price.tsx +++ b/packages/react/components/price/Price.tsx @@ -110,9 +110,9 @@ const Price = ({ clsx( 'price-container', is(`level-${level || '1'}`), - (align == Alignable.ALIGNED_START && is('justified-left')) || + (align == Alignable.ALIGNED_START && is('justified-start')) || (align == Alignable.ALIGNED_CENTER && is('justified-center')) || - (align == Alignable.ALIGNED_END && is('justified-right')) || + (align == Alignable.ALIGNED_END && is('justified-end')) || '', ), )}