1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

fix(typo): unapprived unapproved (#10366)

This commit is contained in:
Richard Gordon 2021-02-04 08:11:05 -05:00 committed by GitHub
parent b2d40f4e3a
commit da18091d8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -118,8 +118,8 @@ async function startApp(metamaskState, backgroundConnection, opts) {
metamaskState.unapprovedTypedMessages, metamaskState.unapprovedTypedMessages,
metamaskState.network, metamaskState.network,
) )
const numberOfUnapprivedTx = unapprovedTxsAll.length const numberOfUnapprovedTx = unapprovedTxsAll.length
if (numberOfUnapprivedTx > 0) { if (numberOfUnapprovedTx > 0) {
store.dispatch( store.dispatch(
actions.showConfTxPage({ actions.showConfTxPage({
id: unapprovedTxsAll[0].id, id: unapprovedTxsAll[0].id,