ci(release): bump build number to 231
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { fixTime } from "@/utils/fixTime";
|
||||
import { ColumnDef } from "@tanstack/react-table";
|
||||
import { format } from "date-fns";
|
||||
import { Trash } from "lucide-react";
|
||||
|
||||
// This type is used to define the shape of our data.
|
||||
@@ -38,10 +38,7 @@ export const ocpColumns = (
|
||||
header: "Error Date",
|
||||
cell: ({ row }) => {
|
||||
if (row.getValue("created_at")) {
|
||||
const correctDate = format(
|
||||
row.getValue("created_at"),
|
||||
"M/d/yyyy hh:mm"
|
||||
);
|
||||
const correctDate = fixTime(row.getValue("created_at"));
|
||||
return (
|
||||
<div className="text-left font-medium">{correctDate}</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user