Skip to content

Commit

Permalink
Do not show tooltip from all "back" buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
ciampo committed Jun 23, 2023
1 parent 8f92787 commit e74207b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,17 @@ export default function SidebarNavigationScreen( {
<NavigatorToParentButton
as={ SidebarButton }
icon={ isRTL() ? chevronRight : chevronLeft }
aria-label={ __( 'Back' ) }
label={ __( 'Back' ) }
showTooltip={ false }
/>
) }
{ ! isRoot && backPath && (
<SidebarButton
as={ SidebarButton }
onClick={ () => goTo( backPath, { isBack: true } ) }
icon={ icon }
label={ __( 'Back' ) }
showTooltip={ false }
/>
) }
{ isRoot && (
Expand Down

0 comments on commit e74207b

Please sign in to comment.