diff options
author | dan <dan.abramov@gmail.com> | 2024-11-21 23:40:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-21 23:40:37 +0000 |
commit | 625459add6c14c9ae6c1158fbe5c67a4e0838fc6 (patch) | |
tree | 451cbfb29f23469b92d4fba3176babe553e38f7d /src/view/com/home/HomeHeaderLayoutMobile.tsx | |
parent | 391e0c4c1881e1bf416321725bad7662e9883868 (diff) | |
download | voidsky-625459add6c14c9ae6c1158fbe5c67a4e0838fc6.tar.zst |
Fix some overdraw (#6617)
Diffstat (limited to 'src/view/com/home/HomeHeaderLayoutMobile.tsx')
-rw-r--r-- | src/view/com/home/HomeHeaderLayoutMobile.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/view/com/home/HomeHeaderLayoutMobile.tsx b/src/view/com/home/HomeHeaderLayoutMobile.tsx index 98253ad74..832396092 100644 --- a/src/view/com/home/HomeHeaderLayoutMobile.tsx +++ b/src/view/com/home/HomeHeaderLayoutMobile.tsx @@ -41,12 +41,12 @@ export function HomeHeaderLayoutMobile({ return ( <Animated.View - style={[pal.view, pal.border, styles.tabBar, headerMinimalShellTransform]} + style={[pal.border, styles.tabBar, headerMinimalShellTransform]} onLayout={e => { headerHeight.set(e.nativeEvent.layout.height) }}> <View style={[pal.view, styles.topBar]}> - <View style={[pal.view, {width: 100}]}> + <View style={[{width: 100}]}> <TouchableOpacity testID="viewHeaderDrawerBtn" onPress={onPressAvi} @@ -68,7 +68,6 @@ export function HomeHeaderLayoutMobile({ atoms.justify_end, atoms.align_center, atoms.gap_md, - pal.view, {width: 100}, ]}> {IS_DEV && ( |