From b28d68adf95888331ec4af7d2369502c9aad6f9c Mon Sep 17 00:00:00 2001 From: Ovi Trif Date: Wed, 14 Feb 2024 18:00:20 +0100 Subject: [PATCH] chore(example): fix lint errors --- example/Dev.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/example/Dev.tsx b/example/Dev.tsx index bc376758..4d8da97b 100644 --- a/example/Dev.tsx +++ b/example/Dev.tsx @@ -493,7 +493,8 @@ const Dev = (): ReactElement => { }, { text: `${amountSats} sats`, - onPress: async (): Promise => createInvoice(amountSats), + onPress: async (): Promise => + createInvoice(amountSats), }, { text: "Don't specify", @@ -530,7 +531,9 @@ const Dev = (): ReactElement => { onPress: async (): Promise => { const pay = await lm.payWithTimeout({ paymentRequest, - amountSats: amount_satoshis ? undefined : ownAmountSats, + amountSats: amount_satoshis + ? undefined + : ownAmountSats, timeout: 20000, }); if (pay.isErr()) {