summaryrefslogtreecommitdiff
path: root/ui/lib/outbox.svelte.js
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-08-19 15:08:44 -0400
committerOwen Jacobson <owen@grimoire.ca>2025-08-19 15:08:44 -0400
commit4624f4dbebf5dd1ed4dc5168573537459b9a115e (patch)
tree0999dedeea07d527255613bec8bd84e34e0501ed /ui/lib/outbox.svelte.js
parent4ace27830ffea715c30f366765aeb231572c60ec (diff)
parent3119ef0f004b576d67737bebf517947f8819b4fa (diff)
Merge branch 'no-prerendered-markdown'
Diffstat (limited to 'ui/lib/outbox.svelte.js')
-rw-r--r--ui/lib/outbox.svelte.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/ui/lib/outbox.svelte.js b/ui/lib/outbox.svelte.js
index c4e2324..74f41bc 100644
--- a/ui/lib/outbox.svelte.js
+++ b/ui/lib/outbox.svelte.js
@@ -9,7 +9,6 @@ class SendToConversation {
this.conversation = conversation;
this.body = body;
this.at = DateTime.now();
- this.renderedBody = md.render(body);
}
toSkeleton(sender) {
@@ -19,7 +18,6 @@ class SendToConversation {
conversation: this.conversation,
sender,
body: this.body,
- renderedBody: this.renderedBody,
};
}