Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix:microNode title to Ln link #237

Merged
merged 1 commit into from
Jun 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/connectors/bc-lnfi-nwc-connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { nwcIcon } from '../icons/connectors/lnfiIcon';
import { ConnectorElement } from './ConnectorElement';
import store from '../../state/store';

export const lnfiConnectorTitle = 'MicroNode Connect';
export const lnfiConnectorTitle = 'LN Link';

@customElement('bc-lnfi-nwc-connector')
export class LnfiNWCConnector extends ConnectorElement {
Expand Down
6 changes: 3 additions & 3 deletions src/components/pages/bc-lnfi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ export class LnfiNWCPage extends withTwind()(BitcoinConnectElement) {

override render() {
return html`<div class="w-full">
<bc-navbar class="flex w-full" heading="MicroNode Connect">
<bc-navbar class="flex w-full" heading="LN Link">
</bc-navbar>
<div class="font-sans text-sm w-full">
<div class="px-8 pt-4 w-full">
<div class="mb-2 ${classes['text-neutral-secondary']}">
1. Add a new
<a
href="https://doc.nostrassets.com/micronode-early-access/micronode-connect-mnc"
href="https://github.com/lnfi-network/ln-node/tree/main/LNLink"
target="_blank"
class="font-bold"
>Wallet Connection
</a>
from
<span class="${classes['text-neutral-tertiary']}"
>MicroNode => Generate NWC</span
>LN Node => Generate NWC</span
>
and copy the connection string.
</div>
Expand Down