From 6e34028f07063a838bb27c6eba98112f2a94aa53 Mon Sep 17 00:00:00 2001 From: mo khan Date: Mon, 28 Apr 2025 15:46:07 -0600 Subject: feat: don't sort sparkles in memory --- public/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'public/application.js') diff --git a/public/application.js b/public/application.js index 7c27a6b..ee905e0 100644 --- a/public/application.js +++ b/public/application.js @@ -17,7 +17,7 @@ document.addEventListener('DOMContentLoaded', (event) => { return this.sparkles.length == 0 ? "Nothing to see here" : "Recent"; }, recentSparkles: function() { - return this.sparkles.reverse(); + return this.sparkles; }, isDisabled: function() { return this.isSending || !this.isValid(); -- cgit v1.2.3