summaryrefslogtreecommitdiff
path: root/client-web/source/user.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client-web/source/user.ts')
-rw-r--r--client-web/source/user.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client-web/source/user.ts b/client-web/source/user.ts
index 057cdf4..0bdf250 100644
--- a/client-web/source/user.ts
+++ b/client-web/source/user.ts
@@ -11,7 +11,7 @@ export abstract class User {
public name?: string
protected tracks: Set<TrackHandle> = new Set()
- constructor(public room: Room, public id: number,) {
+ constructor(public room: Room, public id: number) {
this.el = document.createElement("div")
this.el.classList.add("user")
this.room.el.append(this.el)