Skip to content

Commit

Permalink
Fix tag view header buttons on native
Browse files Browse the repository at this point in the history
  • Loading branch information
s77rt committed May 13, 2024
1 parent 5aa12fa commit 17392b1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/workspace/tags/WorkspaceViewTagsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ function WorkspaceViewTagsPage({route}: WorkspaceViewTagsProps) {
shouldEnableMaxHeight
testID={WorkspaceViewTagsPage.displayName}
>
<HeaderWithBackButton title={currentTagListName}>{getHeaderButtons()}</HeaderWithBackButton>
<HeaderWithBackButton title={currentTagListName}>{!isSmallScreenWidth && getHeaderButtons()}</HeaderWithBackButton>
{isSmallScreenWidth && <View style={[styles.pl5, styles.pr5]}>{getHeaderButtons()}</View>}
<ConfirmModal
isVisible={isDeleteTagsConfirmModalVisible}
onConfirm={deleteTags}
Expand Down

0 comments on commit 17392b1

Please sign in to comment.