Skip to content

Commit

Permalink
fix: returns
Browse files Browse the repository at this point in the history
  • Loading branch information
drptbl committed Oct 28, 2021
1 parent 138db2e commit 5260b44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion commands/puppeteer.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ module.exports = {
},
clear: async () => {
puppeteerBrowser = null;
return true;
},
assignWindows: async () => {
let pages = await puppeteerBrowser.pages();
Expand All @@ -54,7 +55,7 @@ module.exports = {
clearWindows: async () => {
mainWindow = null;
metamaskWindow = null;
},
return true;
},
isMetamaskWindowActive: async () => {
if (activeTabName === 'metamask') {
Expand Down

0 comments on commit 5260b44

Please sign in to comment.