removed useless cell formatter (#30422)

fixes: #30306

Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
Erik Jan de Wit 2024-06-17 22:20:29 +02:00 committed by GitHub
parent 700b493aa3
commit bdf6dff279
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,7 +28,7 @@ import {
Tooltip,
} from "@patternfly/react-core";
import { CheckCircleIcon, WarningTriangleIcon } from "@patternfly/react-icons";
import { cellWidth, expandable } from "@patternfly/react-table";
import { cellWidth } from "@patternfly/react-table";
import { pickBy } from "lodash-es";
import { useState } from "react";
import { Controller, FormProvider, useForm } from "react-hook-form";
@ -468,7 +468,6 @@ export default function EventsSection() {
{
name: "time",
displayKey: "time",
cellFormatters: [expandable],
cellRenderer: (row) =>
formatDate(new Date(row.time!), FORMAT_DATE_AND_TIME),
},