From 7006edbd25dacd4c9333c00ada964a3a1f7dc7c8 Mon Sep 17 00:00:00 2001 From: Aaron Cox Date: Sat, 30 Nov 2024 09:46:33 -0800 Subject: [PATCH] Fixed detection of actions --- .../[network]/(explorer)/transaction/[id]/[[seq]]/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/[network]/(explorer)/transaction/[id]/[[seq]]/+page.svelte b/src/routes/[network]/(explorer)/transaction/[id]/[[seq]]/+page.svelte index ab85deff..989f60e6 100644 --- a/src/routes/[network]/(explorer)/transaction/[id]/[[seq]]/+page.svelte +++ b/src/routes/[network]/(explorer)/transaction/[id]/[[seq]]/+page.svelte @@ -45,7 +45,7 @@ // } -{#if data.transaction?.trx?.actions} +{#if data.transaction?.trx.trx?.actions} {@const actions = data.transaction.trx.trx.actions as Action[]}