Commit 6a26e3c7 authored by Igor Stuev's avatar Igor Stuev Committed by GitHub

Merge pull request #1480 from blockscout/interpretation-fix-2

fix request
parents 2ecdb06d 11fe1d8e
...@@ -16,7 +16,7 @@ const TxDetailsActionsInterpretation = ({ hash, isTxDataLoading }: Props) => { ...@@ -16,7 +16,7 @@ const TxDetailsActionsInterpretation = ({ hash, isTxDataLoading }: Props) => {
const txInterpretationQuery = useApiQuery('tx_interpretation', { const txInterpretationQuery = useApiQuery('tx_interpretation', {
pathParams: { hash }, pathParams: { hash },
queryOptions: { queryOptions: {
enabled: Boolean(hash), enabled: Boolean(hash) && !isTxDataLoading,
placeholderData: TX_INTERPRETATION, placeholderData: TX_INTERPRETATION,
refetchOnMount: false, refetchOnMount: false,
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment