Skip to content

Commit 29c40b4

Browse files
committed
fix: getting old max ammount data
1 parent 3cc18f7 commit 29c40b4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/app/playwright/e2e/SendTransaction.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,13 +346,12 @@ test.describe('SendTransaction', () => {
346346
// Fee values change
347347
await new Promise((resolve) => setTimeout(resolve, 3000));
348348

349-
const maxAmountAfterFee = await getInputByName(page, 'amount').inputValue();
350-
351349
// Submit transaction
352350

353351
const btnLocator = getButtonByText(page, 'Review');
354352

355353
await expectButtonToBeEnabled(btnLocator);
354+
const maxAmountAfterFee = await getInputByName(page, 'amount').inputValue();
356355
await btnLocator.click();
357356

358357
// Approve transaction

0 commit comments

Comments
 (0)