Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@
<div class="title">Derivation Path:</div>
<div class="value">{{ clipboardItem.derivationPath }}</div>
</div>
<div class="unexpected">
<button mat-button color="accent" (click)="onShareFeedback()">Unexpected?</button>
</div>
} @else if (isPaymentClipboardItem(clipboardItem)) {
<div class="item">
<div class="title">Value:</div>
Expand All @@ -50,9 +47,6 @@
<div class="value">{{ clipboardItem.description }}</div>
</div>
}
<div class="unexpected">
<button mat-button color="accent" (click)="onShareFeedback()">Unexpected?</button>
</div>
} @else if (isBolt11ClipboardItem(clipboardItem)) {
<div class="item">
<div class="title">Value:</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,6 @@
justify-content: center;
color: $text-gray;
}

.unexpected {
display: flex;
flex-direction: row;
justify-content: center;
margin-bottom: -15px;
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ export class ClipboardDetailsComponent extends BaseClipboardComponent {
super();
}

onShareFeedback(): void {
window.electron.openUrl('https://branta.pro');
}

onVerify(): void {
(async () => {
var result = await this.queryPayments(this.clipboardItem?.value ?? "")
Expand Down
Loading