Skip to content

Commit b77e961

Browse files
committed
Remove console log and update changelog
1 parent 2b9821c commit b77e961

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ This changelog covers all three packages, as they are (for now) updated as a who
66

77
- Add `Store.parseMetaTags` to load JSON-AD objects stored in the DOM. Speeds up initial page load by allowing server to set JSON-AD objects in the initial HTML response.
88
- Move static assets around, align build with server and fix PWA #292
9+
- Let users register using e-mail address, improve sign-up UX.
910

1011
## v0.35.0
1112

lib/src/authentication.ts

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 1 deletion
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)