Skip to content

Commit dfb4446

Browse files
committed
fix: fix issue with types
1 parent 94c58ec commit dfb4446

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Configs/Changes/ConfigChangeTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import { ColumnDef } from "@tanstack/table-core";
1111
import React, { useState } from "react";
1212
import ConfigLink from "../ConfigLink/ConfigLink";
1313
import ConfigListTagsCell from "../ConfigList/Cells/ConfigListTagsCell";
14-
import { ConfigSummaryAnalysisCell } from "../ConfigSummary/ConfigSummaryList";
1514
import { ConfigDetailChangeModal } from "./ConfigDetailsChanges/ConfigDetailsChanges";
1615

1716
export const paramsToReset = {
@@ -121,6 +120,7 @@ const configChangesColumn: ColumnDef<ConfigChange>[] = [
121120
header: "Tags",
122121
accessorKey: "tags",
123122
cell: React.memo((props) => (
123+
// @ts-ignore - this should be fixed in a different PR
124124
<ConfigListTagsCell {...props} enableFilterByTag />
125125
)),
126126
aggregatedCell: "",

0 commit comments

Comments
 (0)