Skip to content

Commit

Permalink
fix: change filename of secret key download (#610)
Browse files Browse the repository at this point in the history
  • Loading branch information
gorjan5sk authored Jul 27, 2021
1 parent 84bb17b commit eb6d8c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function downloadSecretKey(text: string) {
type: 'text/plain;charset=utf-8',
});
link.href = window.URL.createObjectURL(blob);
link.setAttribute('download', 'secret_key.txt');
link.setAttribute('download', 'standardnotes_2fa_key.txt');
document.body.appendChild(link);
link.click();
link.remove();
Expand Down

0 comments on commit eb6d8c9

Please sign in to comment.