@@ -272,6 +272,7 @@ function PaymentCardForm({
272272 onChangeText = { onChangeCardNumber }
273273 value = { cardNumber }
274274 forwardedFSClass = { CONST . FULLSTORY . CLASS . MASK }
275+ autoComplete = "cc-number"
275276 />
276277 < InputWrapper
277278 InputComponent = { TextInput }
@@ -283,6 +284,7 @@ function PaymentCardForm({
283284 containerStyles = { [ styles . mt5 ] }
284285 spellCheck = { false }
285286 forwardedFSClass = { CONST . FULLSTORY . CLASS . MASK }
287+ autoComplete = "cc-name"
286288 />
287289 < View style = { [ styles . flexRow , styles . mt5 ] } >
288290 < View style = { [ styles . mr2 , styles . flex1 ] } >
@@ -300,6 +302,7 @@ function PaymentCardForm({
300302 inputMode = { CONST . INPUT_MODE . NUMERIC }
301303 maxLength = { 5 }
302304 forwardedFSClass = { CONST . FULLSTORY . CLASS . MASK }
305+ autoComplete = "cc-exp"
303306 />
304307 </ View >
305308 < View style = { styles . flex1 } >
@@ -313,6 +316,7 @@ function PaymentCardForm({
313316 maxLength = { 4 }
314317 inputMode = { CONST . INPUT_MODE . NUMERIC }
315318 forwardedFSClass = { CONST . FULLSTORY . CLASS . MASK }
319+ autoComplete = "cc-csc"
316320 />
317321 </ View >
318322 </ View >
@@ -328,6 +332,7 @@ function PaymentCardForm({
328332 // Limit the address search only to the USA until we fully can support international debit cards
329333 limitSearchesToCountry = { CONST . COUNTRY . US }
330334 forwardedFSClass = { CONST . FULLSTORY . CLASS . MASK }
335+ autoComplete = "street-address"
331336 />
332337 </ View >
333338 ) }
@@ -339,6 +344,7 @@ function PaymentCardForm({
339344 aria-label = { translate ( 'common.zipPostCode' ) }
340345 role = { CONST . ROLE . PRESENTATION }
341346 containerStyles = { [ styles . mt5 ] }
347+ autoComplete = "postal-code"
342348 />
343349 { ! ! showStateSelector && (
344350 < View style = { [ styles . mt4 , styles . mhn5 ] } >
0 commit comments