Skip to content

Commit

Permalink
Remove leftover debug print (#646)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmattia authored May 19, 2022
1 parent cc75006 commit f4efc8a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/frontend/src/flows/recovery/useRecovery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export const useRecovery = async (userNumber?: bigint): Promise<void> => {
return runRecovery(userNumber);
} else {
const pUserNumber = await promptUserNumber("Recover Identity Anchor", null);
console.log(pUserNumber);
if (pUserNumber !== null) {
return runRecovery(pUserNumber);
} else {
Expand Down

0 comments on commit f4efc8a

Please sign in to comment.