Skip to content

Commit

Permalink
fix: Fix the issue with Phalcon Explorer button on Solscan Transactio…
Browse files Browse the repository at this point in the history
…n Details page
  • Loading branch information
0xbe37e committed Jul 11, 2024
1 parent 079c2a1 commit 91cc2e3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v5.2.1

- [fix] Fix the issue with Phalcon Explorer button on Solscan Transaction Details page

### v5.2.0

- [feat] Add a Phalcon Explorer entry on the explorer.jito.wtf bundle page
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metasuites",
"version": "5.2.0",
"version": "5.2.1",
"repository": {
"type": "git",
"url": "https://github.com/blocksecteam/metasuites.git"
Expand Down
12 changes: 4 additions & 8 deletions src/content/solscan/page-scripts/tx.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,10 @@ const initTxPageScript = async () => {

browser.runtime.onMessage.addListener((message, _sender, sendResponse) => {
if (message === GET_SOLSCAN_TRANSACTION) {
lazyLoad(
() => {
if (enhancedLabels) renderTxPageAddressLabels()
if (quick2Parsers) renderAlternativeParsers()
},
'.animate-pulse',
false
)
lazyLoad(() => {
if (enhancedLabels) renderTxPageAddressLabels()
if (quick2Parsers) renderAlternativeParsers()
}, 'div[data-state="active"]')
sendResponse()
}
})
Expand Down

0 comments on commit 91cc2e3

Please sign in to comment.