Skip to content

Commit 8972ea8

Browse files
committed
Fix DID transfer
1 parent e0789bf commit 8972ea8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/DidList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ function Profile({ did, updateDids }: ProfileProps) {
149149
address,
150150
fee: toMojos(fee, walletState.sync.unit.decimals),
151151
})
152-
.then(updateDids)
152+
.then(setResponse)
153153
.catch(addError)
154154
.finally(() => setTransferOpen(false));
155155
};
@@ -161,7 +161,7 @@ function Profile({ did, updateDids }: ProfileProps) {
161161
address: walletState.sync.burn_address,
162162
fee: toMojos(fee, walletState.sync.unit.decimals),
163163
})
164-
.then(updateDids)
164+
.then(setResponse)
165165
.catch(addError)
166166
.finally(() => setBurnOpen(false));
167167
};

0 commit comments

Comments
 (0)