diff options
| -rw-r--r-- | public/application.js | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |
