Skip to content

Commit f60ac50

Browse files
committed
fix: pipeline
1 parent 86bb380 commit f60ac50

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

src/components/Search/SearchAutocompleteList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ function SearchAutocompleteList(
266266
CONST.SEARCH.SYNTAX_FILTER_KEYS.ASSIGNEE,
267267
CONST.SEARCH.SYNTAX_FILTER_KEYS.PAYER,
268268
CONST.SEARCH.SYNTAX_FILTER_KEYS.EXPORTER,
269-
] as SearchFilterKey[];;
269+
] as SearchFilterKey[];
270270

271271
if (lastRange && nameFields.includes(lastRange.key)) {
272272
const afterLastRange = autocompleteQueryValue.substring(lastRange.start + lastRange.length);

src/styles/index.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3089,10 +3089,6 @@ const styles = (theme: ThemeColors) =>
30893089
transform: `rotate(180deg)`,
30903090
},
30913091

3092-
mirror: {
3093-
transform: `scaleX(-1)`,
3094-
},
3095-
30963092
navigationScreenCardStyle: {
30973093
backgroundColor: theme.appBG,
30983094
height: '100%',

tests/unit/SearchAutocompleteParserTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ const nameFieldContinuationTests = [
275275
description: 'Assignee field partial name - parser should return null autocomplete for continuation text',
276276
},
277277
{
278-
query: 'payer:Alice Wond',
278+
query: 'payer:Alice Wind',
279279
expected: {
280280
autocomplete: null,
281281
ranges: [{key: 'payer', value: 'Alice', start: 6, length: 5}],

0 commit comments

Comments
 (0)