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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lute",
"displayName": "Lute",
"version": "1.23.5",
"version": "1.23.6",
"type": "module",
"description": "An Algorand Wallet",
"license": "AGPL-3.0-only",
Expand Down
4 changes: 2 additions & 2 deletions src/components/addAccount/seeds/PickSeed.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<v-col>
Local
<div class="text-grey">
The seed is generated and stored encrypted in the browser
The seed is stored encrypted in the browser
</div>
</v-col>
</v-row>
Expand All @@ -63,7 +63,7 @@
<v-col>
Passkey
<div class="text-grey">
The seed is generated and stored on an authenticator device
The seed is stored on an authenticator device
</div>
</v-col>
</v-row>
Expand Down
2 changes: 1 addition & 1 deletion src/services/Falcon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const Falcon = {
new Uint8Array(Buffer.from(compiledSig.result, "base64"))
);
try {
ed25519.Point.fromBytes(logicSig.address().publicKey).assertValidity();
ed25519.Point.fromBytes(logicSig.address().publicKey, true);
} catch {
break;
}
Expand Down
1 change: 0 additions & 1 deletion tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"w3c-web-hid",
"w3c-web-usb"
],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
Expand Down
Loading