ci(release): bump build number to 231

This commit is contained in:
2025-04-15 07:07:08 -05:00
parent c79496eaac
commit 46bb695840
4 changed files with 11 additions and 11 deletions

View File

@@ -0,0 +1,6 @@
import { format } from "date-fns";
export const fixTime = (date: any) => {
const strippedDate = date.replace("Z", ""); // Remove Z
return format(strippedDate, "MM/dd/yyyy hh:mm a");
};