aboutsummaryrefslogtreecommitdiff
path: root/packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-03-06 19:14:34 -0300
committerSebastian <sebasjm@gmail.com>2023-03-06 19:14:34 -0300
commitf99e1522d1114eeda6bd7ff3aea91421699c783c (patch)
tree3add4da7c1927125d0e41459cbe1abab36cc6355 /packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx
parent3639c6db60e9cf914607422418a9f78bfcf92faa (diff)
downloadwallet-core-f99e1522d1114eeda6bd7ff3aea91421699c783c.tar.gz
wallet-core-f99e1522d1114eeda6bd7ff3aea91421699c783c.tar.bz2
wallet-core-f99e1522d1114eeda6bd7ff3aea91421699c783c.zip
double quotes don't work with pogen
Diffstat (limited to 'packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx')
-rw-r--r--packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx
index 1d049149b..8150f3aec 100644
--- a/packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx
+++ b/packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx
@@ -54,7 +54,7 @@ export function CreatePage({ onCreate, onBack }: Props): VNode {
http_method: !state.http_method
? i18n.str`required`
: !validMethod.includes(state.http_method)
- ? i18n.str`should be one of "${validMethod.join(", ")}"`
+ ? i18n.str`should be one of '${validMethod.join(", ")}'`
: undefined,
url: !state.url ? i18n.str`required` : undefined,
};