From b4bad2deaf93eff5858d903cd68b8fdd5a5eecd3 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 26 Oct 2022 14:50:50 -0300 Subject: pretty --- packages/demobank-ui/src/hooks/async.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/demobank-ui/src/hooks') diff --git a/packages/demobank-ui/src/hooks/async.ts b/packages/demobank-ui/src/hooks/async.ts index be41b4e07..0fc197554 100644 --- a/packages/demobank-ui/src/hooks/async.ts +++ b/packages/demobank-ui/src/hooks/async.ts @@ -18,7 +18,7 @@ * * @author Sebastian Javier Marchano (sebasjm) */ -import { useState } from 'preact/hooks'; +import { useState } from "preact/hooks"; // import { cancelPendingRequest } from "./backend"; export interface Options { @@ -51,9 +51,9 @@ export function useAsync( }, tooLong); try { - console.log('calling async', args); + console.log("calling async", args); const result = await fn(...args); - console.log('async back', result); + console.log("async back", result); setData(result); } catch (error) { setError(error); -- cgit v1.2.3