From 9922192b0dba2e479b5af3e29c1d44b98e4d29d7 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 28 Feb 2023 19:03:43 -0300 Subject: fix #7729 --- packages/demobank-ui/src/components/Cashouts/test.ts | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'packages/demobank-ui/src/components/Cashouts') diff --git a/packages/demobank-ui/src/components/Cashouts/test.ts b/packages/demobank-ui/src/components/Cashouts/test.ts index 014819f44..6d61b0af4 100644 --- a/packages/demobank-ui/src/components/Cashouts/test.ts +++ b/packages/demobank-ui/src/components/Cashouts/test.ts @@ -32,7 +32,9 @@ describe("Transaction states", () => { const props: Props = { account: "123", - onSelected: () => { null }, + onSelected: () => { + null; + }, }; env.addRequestExpectation(TRANSACTION_API_EXAMPLE.LIST_FIRST_PAGE, { @@ -117,7 +119,9 @@ describe("Transaction states", () => { const props: Props = { account: "123", - onSelected: () => { null }, + onSelected: () => { + null; + }, }; env.addRequestExpectation(TRANSACTION_API_EXAMPLE.LIST_NOT_FOUND, {}); @@ -151,7 +155,9 @@ describe("Transaction states", () => { const props: Props = { account: "123", - onSelected: () => { null }, + onSelected: () => { + null; + }, }; env.addRequestExpectation(TRANSACTION_API_EXAMPLE.LIST_ERROR, {}); -- cgit v1.2.3