diff --git a/packages/smarthr-ui/src/components/DatePicker/VRTDatePicker.stories.tsx b/packages/smarthr-ui/src/components/DatePicker/VRTDatePicker.stories.tsx index eda4e038da..4f20a4f31d 100644 --- a/packages/smarthr-ui/src/components/DatePicker/VRTDatePicker.stories.tsx +++ b/packages/smarthr-ui/src/components/DatePicker/VRTDatePicker.stories.tsx @@ -41,6 +41,7 @@ const playExpanded = async ({ canvasElement }: { canvasElement: HTMLElement }) = const canvas = within(canvasElement) const textbox = await canvas.findByRole('textbox') await textbox.focus() + await textbox.blur() // カレンダーを開くためにフォーカスするが、カーソル点滅によるフレーキーを避けるためにすぐにフォーカスを外す } VRTExpanded.play = playExpanded @@ -105,6 +106,7 @@ VRTBottomExpanded.play = async ({ canvasElement }: { canvasElement: HTMLElement const canvas = within(canvasElement) const textbox = await canvas.findByRole('textbox') await textbox.focus() + await textbox.blur() // カレンダーを開くためにフォーカスするが、カーソル点滅によるフレーキーを避けるためにすぐにフォーカスを外す } const WrapperList = styled.ul`