Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GIvanovWaves committed Dec 4, 2024
1 parent 114c211 commit 5f87e27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/main.js

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function drawSignerBlock(allSignersBlock, s) {
if (!s.signer.currentProvider) {
const err = getDiv();
err.style.color = "red";
err.innerText = `provider ${s.name} not found`;
err.innerText = `${s.name} not found`;
block.appendChild(err);
return;
}
Expand Down Expand Up @@ -189,7 +189,6 @@ function drawSignerBlock(allSignersBlock, s) {
recipient: "3N4ziXSMRverXyxHDUKKMR9MHXnB3TyU3Yh",
fee: 100001,
feeAssetId: "WAVES",
attachment: "foo bar baz",
};
const transferParamsField = document.createElement("textarea");
transferParamsField.style.width = "300px";
Expand Down
3 changes: 1 addition & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ function drawSignerBlock(allSignersBlock: HTMLElement, s: SignerWithName) {
if (!s.signer.currentProvider) {
const err = getDiv();
err.style.color = "red";
err.innerText = `provider ${s.name} not found`;
err.innerText = `${s.name} not found`;
block.appendChild(err);
return
}
Expand Down Expand Up @@ -224,7 +224,6 @@ function drawSignerBlock(allSignersBlock: HTMLElement, s: SignerWithName) {
recipient: "3N4ziXSMRverXyxHDUKKMR9MHXnB3TyU3Yh",
fee: 100001,
feeAssetId: "WAVES",
attachment: "foo bar baz",
};

const transferParamsField = document.createElement("textarea");
Expand Down

0 comments on commit 5f87e27

Please sign in to comment.