Skip to content

Commit

Permalink
fix: replace placeholder strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Waldstein committed Oct 19, 2023
1 parent 51caff3 commit 5a74bda
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ import {CSSProperties, useEffect, useState} from 'react';
hostedFieldType="expirationDate"
options={{
selector: '#expiration-date',
placeholder: 'MM/YYYY',
placeholder: __('MM/YYYY', 'give'),
}}
/>
<PayPalHostedField
Expand All @@ -326,7 +326,7 @@ import {CSSProperties, useEffect, useState} from 'react';
hostedFieldType="cvv"
options={{
selector: '#cvv',
placeholder: 'CVV',
placeholder: __('CVV', 'give'),
maskInput: true,
}}
/>
Expand Down

0 comments on commit 5a74bda

Please sign in to comment.