From 4fce9f4c847df521dcf147d0dcbdb5f82c1af3eb Mon Sep 17 00:00:00 2001 From: "shingo.sasaki" Date: Fri, 14 Jun 2024 21:20:54 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20PageCounter=20=E3=82=B3=E3=83=B3?= =?UTF-8?q?=E3=83=9D=E3=83=BC=E3=83=8D=E3=83=B3=E3=83=88=E3=81=AE=20decora?= =?UTF-8?q?tors=20=E3=81=AE=E5=9E=8B=E3=82=92=E4=BF=AE=E6=AD=A3=20(#4717)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../smarthr-ui/src/components/PageCounter/PageCounter.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/smarthr-ui/src/components/PageCounter/PageCounter.tsx b/packages/smarthr-ui/src/components/PageCounter/PageCounter.tsx index 1c1a989882..dd90bee0ed 100644 --- a/packages/smarthr-ui/src/components/PageCounter/PageCounter.tsx +++ b/packages/smarthr-ui/src/components/PageCounter/PageCounter.tsx @@ -10,9 +10,7 @@ type Props = { start: number end: number total?: number - decorators?: DecoratorsType< - 'unitForTotal' | 'unit' | 'rangeSeparator' | 'rangeSeparatorVisuallyHiddenText' - > + decorators?: DecoratorsType<'rangeSeparator' | 'rangeSeparatorVisuallyHiddenText'> } type ElementProps = Omit, keyof Props>