diff --git a/frontend/src/utils/tableData/openorders/ooColumns.tsx b/frontend/src/utils/tableData/openorders/ooColumns.tsx index 8713a0a..6452ccb 100644 --- a/frontend/src/utils/tableData/openorders/ooColumns.tsx +++ b/frontend/src/utils/tableData/openorders/ooColumns.tsx @@ -1,5 +1,5 @@ import { ColumnDef } from "@tanstack/react-table"; -import { format } from "date-fns"; +//import { format } from "date-fns-tz"; // This type is used to define the shape of our data. // You can use a Zod schema here if you want. @@ -44,12 +44,14 @@ export const openOrderColumns: ColumnDef[] = [ header: "DeliveryDate", cell: ({ row }) => { if (row.getValue("deliveryDate")) { - const correctDate = format( - row.getValue("deliveryDate"), - "M/d/yyyy hh:mm" - ); + // const correctDate = format( + // row.getValue("deliveryDate"), + // "M/d/yyyy hh:mm" + // ); return ( -
{correctDate}
+
+ {row.getValue("deliveryDate")} +
); } },