Skip to content

Commit 10b561d

Browse files
committed
Remove console log and update changelog
1 parent b8a8241 commit 10b561d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

+4
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.
8+
59
## v0.35.0
610

711
### @tomic/react

lib/src/authentication.ts

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {
99

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

1514
if (!agent.subject) {

lib/src/websockets.ts

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ export function startWebsocket(url: string, store: Store): WebSocket {
2323
}
2424

2525
function handleOpen(store: Store, client: WebSocket) {
26-
console.log('open client', client);
2726
// Make sure user is authenticated before sending any messages
2827
authenticate(client, store).then(() => {
2928
// Subscribe to all existing messages

0 commit comments

Comments
 (0)