From fe5256fa1ec8a8907ac969e891a045f547e2303e Mon Sep 17 00:00:00 2001 From: Michael Zetterberg Date: Thu, 17 Oct 2024 16:36:02 +0200 Subject: [PATCH] fix: show more/less values --- components/TempDesignSystem/ShowMoreButton/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/TempDesignSystem/ShowMoreButton/index.tsx b/components/TempDesignSystem/ShowMoreButton/index.tsx index 7be723fd1..9ac8c57c9 100644 --- a/components/TempDesignSystem/ShowMoreButton/index.tsx +++ b/components/TempDesignSystem/ShowMoreButton/index.tsx @@ -16,8 +16,8 @@ export default function ShowMoreButton({ intent, disabled, showLess, - textShowMore = "Show less", - textShowLess = "Show more", + textShowMore = "Show more", + textShowLess = "Show less", loadMoreData, }: ShowMoreButtonProps) { const intl = useIntl()