fix(SW-614): update enter details strings

This commit is contained in:
Tobias Johansson
2024-10-24 14:45:25 +02:00
parent a690750c36
commit 7819db2bb2
8 changed files with 52 additions and 13 deletions

View File

@@ -171,9 +171,9 @@ export default function Payment({
return <LoadingSpinner />
}
const paymentVerb = mustBeGuaranteed
? intl.formatMessage({ id: "guaranteeing" })
: intl.formatMessage({ id: "paying" })
const guaranteeing = intl.formatMessage({ id: "guaranteeing" })
const paying = intl.formatMessage({ id: "paying" })
const paymentVerb = mustBeGuaranteed ? guaranteeing : paying
return (
<FormProvider {...methods}>