diff --git a/apps/ssb.json b/apps/ssb.json
index 5254762d..61c9d28d 100644
--- a/apps/ssb.json
+++ b/apps/ssb.json
@@ -1,5 +1,5 @@
{
"type": "tildefriends-app",
"emoji": "🦀",
- "previous": "&jko2iokTaY2t/pD9m4ekMr0wsLjov3LVl9ShysXEjkE=.sha256"
+ "previous": "&Zv/eOewtUPxYuALmYV8v+JDKwH4+aN8zCTYFwB7oYEw=.sha256"
}
diff --git a/apps/ssb/tf-reactions-modal.js b/apps/ssb/tf-reactions-modal.js
index 84cbfa41..f4a30a3b 100644
--- a/apps/ssb/tf-reactions-modal.js
+++ b/apps/ssb/tf-reactions-modal.js
@@ -41,23 +41,26 @@ class TfReactionsModalElement extends LitElement {
>
- ${this.votes.map(
- (x) => html`
- -
- ${x?.content?.vote?.expression}
-
- ${new Date(x?.timestamp).toLocaleString()}
-
- `
- )}
+ ${this.votes
+ .sort((x, y) => y.timestamp - x.timestamp)
+ .map(
+ (x) => html`
+ -
+ ${x?.content?.vote?.expression}
+
+ ${new Date(x?.timestamp).toLocaleString()}
+
+ `
+ )}