Skip to content

Commit 59cd594

Browse files
committed
Remove console log and update changelog
1 parent c5ae332 commit 59cd594

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ This changelog covers all three packages, as they are (for now) updated as a who
3131
- Fix Dialogue form #308
3232
- Refactor search, escape query strings for Tantivy
3333
- Add `import` context menu, allows importing anywhere
34+
- Let users register using e-mail address, improve sign-up UX.
35+
- `store.createSubject` allows creating nested paths
3436

3537
### @tomic/react
3638

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)