Skip to content

Commit

Permalink
Merge pull request #162 from nautls/fix-ledger-connection
Browse files Browse the repository at this point in the history
Fix ledger connection
  • Loading branch information
arobsn authored Jul 13, 2024
2 parents 1a54ee5 + 9a1fb26 commit 116da88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/add/AddView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ import { defineComponent } from "vue";
import { isEmpty } from "@fleet-sdk/common";
import { browser, isPopup } from "@/common/browser";
import LedgerLogo from "@/assets/images/hw-devices/ledger-logo.svg";
import { EXT_ENTRY_ROOT } from "@/constants/extension";
export default defineComponent({
name: "AddView",
Expand All @@ -80,7 +81,7 @@ export default defineComponent({
}
browser.tabs.create({
url: browser.runtime.getURL(`index.html${href}?redirect=false`),
url: browser.runtime.getURL(`${EXT_ENTRY_ROOT}/popup/index.html${href}?redirect=false`),
active: true
});
window.close();
Expand Down

0 comments on commit 116da88

Please sign in to comment.