From b24933c7fb8ff5e318f88b13746628c3502a22f5 Mon Sep 17 00:00:00 2001 From: J M Rossy Date: Fri, 7 Oct 2022 16:15:31 -0400 Subject: [PATCH] Remove unecessary async modifier --- src/features/debugger/TxDebugger.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/debugger/TxDebugger.tsx b/src/features/debugger/TxDebugger.tsx index b0eec1b..890849e 100644 --- a/src/features/debugger/TxDebugger.tsx +++ b/src/features/debugger/TxDebugger.tsx @@ -40,7 +40,7 @@ export function TxDebugger() { data, } = useQuery( ['debugMessage', isValidInput, sanitizedInput, environment], - async () => { + () => { if (!isValidInput || !sanitizedInput) { replacePathParam('txHash', ''); return null;