fix(searchBarV2): translation search bar placeholder

This commit is contained in:
danis
2023-12-06 20:08:47 +01:00
parent cba8815cfc
commit d717269563
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ const SearchBarComponent = () => {
type="text"
value={query}
variant={'unstyled'}
placeholder="What are you looking for ?"
placeholder={translate('searchBarPlaceholder')}
style={{ width: '100%', height: 30 }}
onChangeText={(value) => setQuery(value)}
/>