diff --git a/front/app/components/ReadMoreWrapper/ReadMoreWrapper.tsx b/front/app/components/ReadMoreWrapper/ReadMoreWrapper.tsx index cc3246518bef..1225ea510c16 100644 --- a/front/app/components/ReadMoreWrapper/ReadMoreWrapper.tsx +++ b/front/app/components/ReadMoreWrapper/ReadMoreWrapper.tsx @@ -100,7 +100,7 @@ const ReadMoreWrapper = memo( const buttonToFocus = readMoreButton || seeLessButton; if (buttonToFocus) { // We move focus to the other button after clicking to make sure the screen reader reads it - buttonToFocus.focus(); + buttonToFocus.focus({ preventScroll: true }); } }, [contentId, expanded]);