From 6c107113c878251c68502d1b703e43cb279e3dc0 Mon Sep 17 00:00:00 2001 From: Joep Meindertsma Date: Thu, 29 Dec 2022 16:09:06 +0100 Subject: [PATCH] Remove console log and update changelog --- CHANGELOG.md | 4 ++++ lib/src/authentication.ts | 1 - lib/src/websockets.ts | 1 - 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 566cf68c..f7f78931 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This changelog covers all three packages, as they are (for now) updated as a whole +## UNRELEASED + +- Let users register using e-mail address, improve sign-up UX #238 + ## v0.34.10 - Don't use WebSocket in Node context #280 diff --git a/lib/src/authentication.ts b/lib/src/authentication.ts index 05152710..c0beeb2f 100644 --- a/lib/src/authentication.ts +++ b/lib/src/authentication.ts @@ -10,7 +10,6 @@ import { /** Returns a JSON-AD resource of an Authentication */ export async function createAuthentication(subject: string, agent: Agent) { - console.log('create authentication', subject); const timestamp = getTimestampNow(); if (!agent.subject) { diff --git a/lib/src/websockets.ts b/lib/src/websockets.ts index 799e90f2..d92a37a9 100644 --- a/lib/src/websockets.ts +++ b/lib/src/websockets.ts @@ -29,7 +29,6 @@ export function startWebsocket(url: string, store: Store): WebSocket { } function handleOpen(store: Store, client: WebSocket) { - console.log('open client', client); // Make sure user is authenticated before sending any messages authenticate(client, store).then(() => { // Subscribe to all existing messages