Skip to content

Commit

Permalink
fix jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
mozzius committed Jan 30, 2025
1 parent 70a0b71 commit 16c45be
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/view/screens/Search/Search.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useEffect, useLayoutEffect,useMemo} from 'react'
import React, {useEffect, useLayoutEffect, useMemo} from 'react'
import {
ActivityIndicator,
Image,
Expand Down Expand Up @@ -883,10 +883,10 @@ export function SearchScreen(
</Layout.Header.TitleText>
</Layout.Header.Content>
{showFilters ? (
<SearchLanguageDropdown
value={params.lang}
onChange={params.setLang}
/>
<SearchLanguageDropdown
value={params.lang}
onChange={params.setLang}
/>
) : (
<Layout.Header.Slot />
)}
Expand All @@ -895,10 +895,9 @@ export function SearchScreen(
)}
</LayoutAnimationConfig>
<Animated.View
style={[a.px_md, a.pt_sm, a.pb_sm, a.overflow_hidden]}
style={[a.px_md, a.pt_sm, a.pb_sm, a.overflow_hidden, a.gap_sm]}
layout={native(LinearTransition)}>
<Animated.View
style={[a.gap_sm, a.relative, animatedInputContainerStyle]}>
<Animated.View style={[a.relative, animatedInputContainerStyle]}>
<View style={[a.w_full]}>
<SearchInput
ref={textInput}
Expand Down Expand Up @@ -934,6 +933,7 @@ export function SearchScreen(
</ButtonText>
</Button>
</Animated.View>
</Animated.View>

{showFilters && gtMobile && (
<View
Expand Down

0 comments on commit 16c45be

Please sign in to comment.