Skip to content

Commit

Permalink
remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
MaHaWo committed Sep 25, 2024
1 parent 6e274d7 commit f59574d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion frontend/src/lib/components/ChildrenRegistration.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
const verified = await verifyInput();
if (verified) {
const childID = generateChildID(childData.name);
console.log('childData: ', childData);
await children.addChildData(userID, childID, childData);
await children.addChildObservation(userID, childID, {
user: userID,
Expand Down
1 change: 0 additions & 1 deletion frontend/src/lib/stores/userStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ async function createDummyUser(name: string = 'dummyUser') {
}

async function hash(input: string): string {
console.log('hash input');
const encoder = new TextEncoder();
const data = encoder.encode(input);
const hashArray = Array.from(new Uint8Array(await crypto.subtle.digest('SHA-256', data)));
Expand Down

0 comments on commit f59574d

Please sign in to comment.