fix: persist tx decoding across popup close/reopen (closes #60) #61
Reference in New Issue
Block a user
Delete Branch "fix/60-tx-view-decode-persistence"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Moves
loadCalldata()invocation fromshow()intorender(), so that when the popup is closed and reopened (which callsrender()directly viarestoreView), contract call decoding is re-fetched and displayed.Closes #60
Code Review: ✅ Approved
The fix correctly moves
loadCalldata()fromshow()intorender(), so calldata decoding runs on every render — including when the view is restored after popup close/reopen. This directly addresses #60.Marked merge-ready.