Skip to content

Commit

Permalink
Removed reduendant code comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
kkomelin committed May 9, 2024
1 parent 5ad0b51 commit be8f1b8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions packages/frontend/src/hooks/useOwnGreeting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ const useOwnGreeting = () => {
},
options: {
showContent: true,
// showDisplay: true,
// showOwner: true,
},
})
}
Expand Down
3 changes: 0 additions & 3 deletions packages/frontend/src/hooks/useTransact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,13 @@ const useTransact = ({ functionName, onSuccess, onError }: IProps) => {
digest: tx.digest,
})
.then(() => {
// const objectId = tx.effects?.created?.[0]?.reference?.objectId
// if (objectId) {
reportTxSuccess(
transactionUrl(explorerUrl, tx.digest),
notificationId
)
if (onSuccess != null) {
onSuccess(tx)
}
// }
})
},
}
Expand Down

0 comments on commit be8f1b8

Please sign in to comment.