diff options
Diffstat (limited to 'src/view/com')
-rw-r--r-- | src/view/com/search/SearchResults.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/view/com/search/SearchResults.tsx b/src/view/com/search/SearchResults.tsx index 74d6e2ef0..bf623d93e 100644 --- a/src/view/com/search/SearchResults.tsx +++ b/src/view/com/search/SearchResults.tsx @@ -24,7 +24,7 @@ export const SearchResults = observer(({model}: {model: SearchUIModel}) => { const renderTabBar = React.useCallback( (props: RenderTabBarFnProps) => { return ( - <CenteredView style={[pal.border, styles.tabBar]}> + <CenteredView style={[pal.border, pal.view, styles.tabBar]}> <TabBar items={SECTIONS} {...props} @@ -128,7 +128,6 @@ const styles = StyleSheet.create({ top: 0, flexDirection: 'column', alignItems: 'center', - backgroundColor: 'white', }, empty: { paddingHorizontal: 14, |