more fixes for pendingCreationTx
This commit is contained in:
parent
96ffd52266
commit
f8d6ad4ca2
|
@ -133,7 +133,7 @@ const Open = ({ addSafe, network, provider, userAccount }) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const onSafeCreated = async (safeAddress) => {
|
const onSafeCreated = async (safeAddress) => {
|
||||||
const pendingCreation = await loadFromStorage(SAFE_PENDING_CREATION_STORAGE_KEY)
|
const pendingCreation = await loadFromStorage<{ txHash: string }>(SAFE_PENDING_CREATION_STORAGE_KEY)
|
||||||
|
|
||||||
const name = getSafeNameFrom(pendingCreation)
|
const name = getSafeNameFrom(pendingCreation)
|
||||||
const ownersNames = getNamesFrom(pendingCreation)
|
const ownersNames = getNamesFrom(pendingCreation)
|
||||||
|
|
Loading…
Reference in New Issue