summaryrefslogtreecommitdiff
path: root/packages/frontend/src/paths/admin/create/CreatePage.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-05-10 11:29:05 -0300
committerSebastian <sebasjm@gmail.com>2021-05-10 11:29:08 -0300
commit84cd616c126d2ae723f2fca19d6ad53d6569ead1 (patch)
tree10b1c1813bf16fd34de4c1cb20b0c5f9780bfea0 /packages/frontend/src/paths/admin/create/CreatePage.tsx
parenta28df73419162d8b5af13b789318704f80f10d63 (diff)
downloadmerchant-backoffice-84cd616c126d2ae723f2fca19d6ad53d6569ead1.tar.gz
merchant-backoffice-84cd616c126d2ae723f2fca19d6ad53d6569ead1.tar.bz2
merchant-backoffice-84cd616c126d2ae723f2fca19d6ad53d6569ead1.zip
fix lint errors
Diffstat (limited to 'packages/frontend/src/paths/admin/create/CreatePage.tsx')
-rw-r--r--packages/frontend/src/paths/admin/create/CreatePage.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/frontend/src/paths/admin/create/CreatePage.tsx b/packages/frontend/src/paths/admin/create/CreatePage.tsx
index 285f72d..9592a90 100644
--- a/packages/frontend/src/paths/admin/create/CreatePage.tsx
+++ b/packages/frontend/src/paths/admin/create/CreatePage.tsx
@@ -86,15 +86,15 @@ export function CreatePage({ onCreate, onBack, forceId }: Props): VNode {
<Input<Entity> name="name" label={i18n`Name`} tooltip={i18n`descriptive name`} />
- <InputSecured<Entity> name="auth_token" label={i18n`Auth token`} tooltip={i18n`useful to prevent other to change the instance configuration`}/>
+ <InputSecured<Entity> name="auth_token" label={i18n`Auth token`} tooltip={i18n`useful to prevent other to change the instance configuration`} />
- <InputPayto<Entity> name="payto_uris" label={i18n`Account address`} help="x-taler-bank/bank.taler:5882/blogger" tooltip={i18n`where the money will be sent`}/>
+ <InputPayto<Entity> name="payto_uris" label={i18n`Account address`} help="x-taler-bank/bank.taler:5882/blogger" tooltip={i18n`where the money will be sent`} />
<InputCurrency<Entity> name="default_max_deposit_fee" label={i18n`Default max deposit fee`} tooltip={i18n`max deposit fee when an order has not override it`} />
- <InputCurrency<Entity> name="default_max_wire_fee" label={i18n`Default max wire fee`} tooltip={i18n`max wire fee when the order has not override it`}/>
+ <InputCurrency<Entity> name="default_max_wire_fee" label={i18n`Default max wire fee`} tooltip={i18n`max wire fee when the order has not override it`} />
- <Input<Entity> name="default_wire_fee_amortization" label={i18n`Default wire fee amortization`} tooltip={i18n`max wire fee amortization when the order has not override it`}/>
+ <Input<Entity> name="default_wire_fee_amortization" label={i18n`Default wire fee amortization`} tooltip={i18n`max wire fee amortization when the order has not override it`} />
<InputGroup name="address" label={i18n`Address`} tooltip={i18n`where is the merchant physical located`}>
<InputLocation name="address" />
@@ -104,9 +104,9 @@ export function CreatePage({ onCreate, onBack, forceId }: Props): VNode {
<InputLocation name="jurisdiction" />
</InputGroup>
- <InputDuration<Entity> name="default_pay_delay" label={i18n`Default pay delay`} tooltip={i18n`max time to pay if the order doest not override it`}/>
+ <InputDuration<Entity> name="default_pay_delay" label={i18n`Default pay delay`} tooltip={i18n`max time to pay if the order doest not override it`} />
- <InputDuration<Entity> name="default_wire_transfer_delay" label={i18n`Default wire transfer delay`} tooltip={i18n`min time to wait the transfer if the merchant doest not override it`}/>
+ <InputDuration<Entity> name="default_wire_transfer_delay" label={i18n`Default wire transfer delay`} tooltip={i18n`min time to wait the transfer if the merchant doest not override it`} />
</FormProvider>