From 11fe1d8e3e9ee8081d06ed30723cce1a4408ba13 Mon Sep 17 00:00:00 2001 From: isstuev Date: Fri, 5 Jan 2024 13:48:14 +0100 Subject: [PATCH] fix request --- .../details/txDetailsActions/TxDetailsActionsInterpretation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/tx/details/txDetailsActions/TxDetailsActionsInterpretation.tsx b/ui/tx/details/txDetailsActions/TxDetailsActionsInterpretation.tsx index bd912f89fc..ade6ac072a 100644 --- a/ui/tx/details/txDetailsActions/TxDetailsActionsInterpretation.tsx +++ b/ui/tx/details/txDetailsActions/TxDetailsActionsInterpretation.tsx @@ -16,7 +16,7 @@ const TxDetailsActionsInterpretation = ({ hash, isTxDataLoading }: Props) => { const txInterpretationQuery = useApiQuery('tx_interpretation', { pathParams: { hash }, queryOptions: { - enabled: Boolean(hash), + enabled: Boolean(hash) && !isTxDataLoading, placeholderData: TX_INTERPRETATION, refetchOnMount: false, },