Skip to content

Commit 87e371d

Browse files
committed
Remove console log and update changelog
1 parent ebfd3f2 commit 87e371d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This changelog covers all three packages, as they are (for now) updated as a whole
44

5+
## UNRELEASED
6+
7+
- Let users register using e-mail address, improve sign-up UX #238
8+
59
## v0.34.9
610

711
- Fix @tomic/lib exports for non-ts contexts #270

lib/src/authentication.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import {
1010

1111
/** Returns a JSON-AD resource of an Authentication */
1212
export async function createAuthentication(subject: string, agent: Agent) {
13-
console.log('create authentication', subject);
1413
const timestamp = getTimestampNow();
1514

1615
if (!agent.subject) {

lib/src/websockets.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ export function startWebsocket(url: string, store: Store): WebSocket {
2929
}
3030

3131
function handleOpen(store: Store, client: WebSocket) {
32-
console.log('open client', client);
3332
// Make sure user is authenticated before sending any messages
3433
authenticate(client, store).then(() => {
3534
// Subscribe to all existing messages

0 commit comments

Comments
 (0)