Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
fix: key format
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeplotean committed Oct 29, 2023
1 parent d99e007 commit 117a387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/pages/settings/keys/export/[keyId].vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const keyId = route.params.keyId
async function loadExportedKey() {
const data = await $fetch(`/r/wallet/keys/load/${keyId}?format=${format}&loadPrivateKey=${loadPrivateKey}`)
exportedKey.value = data
exportedKey.value = JSON.stringify(data);
}
if (process.client && !loadPrivateKey) {
Expand Down

0 comments on commit 117a387

Please sign in to comment.