Skip to content

Commit

Permalink
fix: Transaction Builder link
Browse files Browse the repository at this point in the history
  • Loading branch information
iamacook committed Sep 19, 2023
1 parent 2c680af commit f92aa43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/tx-flow/common/TxButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const TxBuilderButton = () => {

if (!txBuilder?.app) return null

const isTxBuilder = router.pathname === AppRoutes.balances.nfts
const isTxBuilder = typeof txBuilder.link.query === 'object' && router.query.appUrl === txBuilder.link.query?.appUrl
const onClick = isTxBuilder ? () => setTxFlow(undefined) : undefined

return (
Expand Down

0 comments on commit f92aa43

Please sign in to comment.