Skip to content

Commit

Permalink
fix: remove unnecessary log (#4570)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamacook authored Nov 26, 2024
1 parent 7642d4a commit 9382f62
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/features/multichain/hooks/useSafeCreationData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,7 @@ export const useSafeCreationData = (safeAddress: string, chains: ChainInfo[]): A
const undeployedSafe = undeployedSafes[chain.chainId]?.[safeAddress]

try {
const creationData = await getCreationDataForChain(chain, undeployedSafe, safeAddress, customRpc)
console.log({ creationData })
return creationData
return await getCreationDataForChain(chain, undeployedSafe, safeAddress, customRpc)
} catch (err) {
lastError = asError(err)
}
Expand Down

0 comments on commit 9382f62

Please sign in to comment.