diff --git a/src/popup/index.html b/src/popup/index.html index c6de379..2e93eab 100644 --- a/src/popup/index.html +++ b/src/popup/index.html @@ -218,8 +218,19 @@
-
-

Recent Transactions

+
+
+
+ Recent Transactions +
Loading...
diff --git a/src/popup/views/home.js b/src/popup/views/home.js index 1992155..8e373a7 100644 --- a/src/popup/views/home.js +++ b/src/popup/views/home.js @@ -251,8 +251,11 @@ function render(ctx) { let html = ""; state.wallets.forEach((wallet, wi) => { + if (wi > 0) { + html += `
`; + } html += `
`; - html += `
`; + html += `
`; html += `${wallet.name}`; if (wallet.type === "hd") { html += ``;