feat : lang

This commit is contained in:
elforjani3
2021-06-07 15:31:14 +02:00
parent 23450a09cd
commit 536c4a32fb
5 changed files with 26 additions and 25 deletions

View File

@@ -10,7 +10,6 @@ import { useAutofocus } from 'hooks';
import withDialogActions from 'containers/Dialog/withDialogActions';
/**
* Payment via license form.
*/
@@ -31,7 +30,9 @@ function PaymentViaLicenseForm({
return (
<Form>
<div className={CLASSES.DIALOG_BODY}>
<p>Please enter your preferred payment method below.</p>
<p>
<T id={'please_enter_your_preferred_payment_method_below'} />
</p>
<FastField name="license_code">
{({ field, meta: { error, touched } }) => (
@@ -72,6 +73,4 @@ function PaymentViaLicenseForm({
);
}
export default compose(
withDialogActions
)(PaymentViaLicenseForm);
export default compose(withDialogActions)(PaymentViaLicenseForm);