summaryrefslogtreecommitdiff
path: root/ui/lib/state/remote
diff options
context:
space:
mode:
Diffstat (limited to 'ui/lib/state/remote')
-rw-r--r--ui/lib/state/remote/channels.svelte.js2
-rw-r--r--ui/lib/state/remote/messages.svelte.js2
-rw-r--r--ui/lib/state/remote/state.svelte.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/ui/lib/state/remote/channels.svelte.js b/ui/lib/state/remote/channels.svelte.js
index 19946f2..b2888cb 100644
--- a/ui/lib/state/remote/channels.svelte.js
+++ b/ui/lib/state/remote/channels.svelte.js
@@ -5,7 +5,7 @@ class Channel {
return new Channel({
at: DateTime.fromISO(at),
id,
- name
+ name,
});
}
diff --git a/ui/lib/state/remote/messages.svelte.js b/ui/lib/state/remote/messages.svelte.js
index 0a081bb..7ce28b4 100644
--- a/ui/lib/state/remote/messages.svelte.js
+++ b/ui/lib/state/remote/messages.svelte.js
@@ -9,7 +9,7 @@ class Message {
channel,
sender,
body,
- renderedBody: render(body)
+ renderedBody: render(body),
});
}
diff --git a/ui/lib/state/remote/state.svelte.js b/ui/lib/state/remote/state.svelte.js
index e00d55c..a30e0fe 100644
--- a/ui/lib/state/remote/state.svelte.js
+++ b/ui/lib/state/remote/state.svelte.js
@@ -15,7 +15,7 @@ export class State {
users: Users.boot(users),
channels: Channels.boot(channels),
messages: Messages.boot(messages),
- resumePoint
+ resumePoint,
});
}