Skip to content

Commit

Permalink
fix(password): remove password logging
Browse files Browse the repository at this point in the history
  • Loading branch information
yyewolf committed Apr 5, 2024
1 parent bb88713 commit 2abe072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/password.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// onEnter
function onEnter(e: KeyboardEvent) {
if (e.key === 'Enter') {
console.log('a' + password);
// console.log('a' + password);
callback(password);
password = '';
}
Expand Down

0 comments on commit 2abe072

Please sign in to comment.