Add various performance improvements

This commit is contained in:
2026-02-14 08:44:40 -05:00
parent 3c93910723
commit 1e69b2b57e
12 changed files with 209 additions and 114 deletions

View File

@@ -1,6 +1,6 @@
<script>
import axios from "axios";
import moment from "moment";
import dayjs from "dayjs";
import Loading from "vue-loading-overlay";
import { install } from "@github/hotkey";
@@ -55,7 +55,7 @@ export default {
computed: {
formatDate() {
return (v) => {
return moment(String(v)).format("hh:mm A z (MM/DD)");
return dayjs(String(v)).format("hh:mm A z (MM/DD)");
};
},
filteredTopics() {