change value type in send coin step for coherence

This commit is contained in:
mahula 2023-06-27 18:03:32 +02:00
parent 07e11fe788
commit a612f2e305

View File

@ -7,7 +7,7 @@ When(
'the user fills the send form with {string} {string} {string}',
(email: string, amount: string, memoText: string) => {
sendPage.enterReceiverEmail(email)
sendPage.enterAmount(`${amount}`)
sendPage.enterAmount(amount)
sendPage.enterMemoText(memoText)
}
)