Skip to content

Commit 3fa1921

Browse files
committed
fix: address comments
1 parent 6a5e8af commit 3fa1921

2 files changed

Lines changed: 4 additions & 8 deletions

File tree

src/styles/index.ts

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

3092+
mirror: {
3093+
transform: `scaleX(-1)`,
3094+
},
3095+
30923096
navigationScreenCardStyle: {
30933097
backgroundColor: theme.appBG,
30943098
height: '100%',

tests/unit/SearchAutocompleteParserTest.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,6 @@ const nameFieldContinuationTests = [
290290
},
291291
description: 'Exporter field partial name - parser should return null autocomplete for continuation text',
292292
},
293-
294293
{
295294
query: 'to:John Smith Doe',
296295
expected: {
@@ -307,7 +306,6 @@ const nameFieldContinuationTests = [
307306
},
308307
description: 'Multiple word continuation with partial last name - parser should only parse first token',
309308
},
310-
311309
{
312310
query: 'to:John Smi',
313311
expected: {
@@ -324,7 +322,6 @@ const nameFieldContinuationTests = [
324322
},
325323
description: 'Tab character before continuation text',
326324
},
327-
328325
{
329326
query: 'category:Travel Exp',
330327
expected: {
@@ -341,7 +338,6 @@ const nameFieldContinuationTests = [
341338
},
342339
description: 'Tag field with space - parser treats space as separator, continuation logic applies in UI',
343340
},
344-
345341
{
346342
query: 'type:expense to:John Smi amount>100',
347343
expected: {
@@ -369,7 +365,6 @@ const nameFieldContinuationTests = [
369365
},
370366
description: 'Mixed query with name continuation and other field should autocomplete the other field',
371367
},
372-
373368
{
374369
query: 'to:John',
375370
expected: {
@@ -396,7 +391,6 @@ const nameFieldContinuationTests = [
396391
},
397392
description: 'Quoted complete name should provide autocomplete',
398393
},
399-
400394
{
401395
query: "to:John O'Con",
402396
expected: {
@@ -413,7 +407,6 @@ const nameFieldContinuationTests = [
413407
},
414408
description: 'Hyphenated first name with continuation should return null autocomplete',
415409
},
416-
417410
{
418411
query: 'to:John Smi',
419412
expected: {
@@ -446,7 +439,6 @@ const nameFieldContinuationTests = [
446439
},
447440
description: 'Assignee field with partial second name should return null autocomplete',
448441
},
449-
450442
{
451443
query: 'to:John,Jane',
452444
expected: {

0 commit comments

Comments
 (0)