From f8d6ad4ca28b34e5a0800381edacc4095617e112 Mon Sep 17 00:00:00 2001 From: Mikhail Mikheev Date: Tue, 23 Jun 2020 19:06:23 +0400 Subject: [PATCH] more fixes for pendingCreationTx --- src/routes/open/container/Open.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/open/container/Open.tsx b/src/routes/open/container/Open.tsx index a6aa4737..f489fbe3 100644 --- a/src/routes/open/container/Open.tsx +++ b/src/routes/open/container/Open.tsx @@ -133,7 +133,7 @@ const Open = ({ addSafe, network, provider, userAccount }) => { } 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 ownersNames = getNamesFrom(pendingCreation)