Skip to content

Commit

Permalink
Merge pull request #2782 from getAlby/webbtc-onboard
Browse files Browse the repository at this point in the history
fix: use webbtc enable screen for webbtc provider
  • Loading branch information
rolznz committed Sep 29, 2023
2 parents 48d453a + 2b04e4b commit 456b6a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/screens/Enable/WebbtcEnable.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useEffect, useState } from "react";
import LiquidEnableComponent from "~/app/components/Enable/LiquidEnable";
import WebbtcEnableComponent from "~/app/components/Enable/WebbtcEnable";
import Onboard from "~/app/components/onboard";
import { useAccount } from "~/app/context/AccountContext";
import api from "~/common/lib/api";
Expand Down Expand Up @@ -34,7 +34,7 @@ export default function WebbtcEnable(props: Props) {
return (
<>
{hasMnemonic ? (
<LiquidEnableComponent origin={props.origin} />
<WebbtcEnableComponent origin={props.origin} />
) : (
<Onboard />
)}
Expand Down
3 changes: 1 addition & 2 deletions src/i18n/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,6 @@
},
"webln_enable": {
"title": "Connect to WebLN",

"request2": "Request invoices and lightning information"
},
"alby_enable": {
Expand All @@ -548,7 +547,7 @@
},
"webbtc_enable": {
"title": "Connect to WebBTC",
"request2": "Request invoices and liquid information"
"request2": "Request invoices and Webbtc information"
},
"unlock": {
"unlock_to_continue": "Unlock to continue",
Expand Down

0 comments on commit 456b6a5

Please sign in to comment.