diff --git a/packages/frontend/src/hooks/useOwnGreeting.tsx b/packages/frontend/src/hooks/useOwnGreeting.tsx index e9dd5ea..43f4432 100644 --- a/packages/frontend/src/hooks/useOwnGreeting.tsx +++ b/packages/frontend/src/hooks/useOwnGreeting.tsx @@ -17,8 +17,6 @@ const useOwnGreeting = () => { }, options: { showContent: true, - // showDisplay: true, - // showOwner: true, }, }) } diff --git a/packages/frontend/src/hooks/useTransact.ts b/packages/frontend/src/hooks/useTransact.ts index cebfa96..db8ffd3 100644 --- a/packages/frontend/src/hooks/useTransact.ts +++ b/packages/frontend/src/hooks/useTransact.ts @@ -58,8 +58,6 @@ 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 @@ -67,7 +65,6 @@ const useTransact = ({ functionName, onSuccess, onError }: IProps) => { if (onSuccess != null) { onSuccess(tx) } - // } }) }, }