diff --git a/src/app/controllers/views/ControllerList/ControllerListTable/ControllerListTable.tsx b/src/app/controllers/views/ControllerList/ControllerListTable/ControllerListTable.tsx index f353b9572e..4cb544cc0b 100644 --- a/src/app/controllers/views/ControllerList/ControllerListTable/ControllerListTable.tsx +++ b/src/app/controllers/views/ControllerList/ControllerListTable/ControllerListTable.tsx @@ -15,7 +15,6 @@ import TooltipButton from "@/app/base/components/TooltipButton"; import docsUrls from "@/app/base/docsUrls"; import { useFetchActions, useTableSort } from "@/app/base/hooks"; import { SortDirection } from "@/app/base/types"; -import ImageStatus from "@/app/controllers/components/ImageStatus"; import { actions as controllerActions } from "@/app/store/controller"; import controllerSelectors from "@/app/store/controller/selectors"; import type { Controller, ControllerMeta } from "@/app/store/controller/types"; @@ -197,17 +196,6 @@ const generateRows = ({ ? "Up-to-date" : controller.versions?.update?.version || null, }, - { - "aria-label": "Last image sync", - className: "images-col", - content: ( - } - /> - ), - }, ], "data-testid": `controller-${system_id}`, }; @@ -320,17 +308,6 @@ const ControllerListTable = ({ ), }, - { - className: "images-col", - content: ( - <> - - Last Image Sync - - Images Status - - ), - }, ]} rows={generateRows({ controllers: sortedControllers, diff --git a/src/app/controllers/views/ControllerList/ControllerListTable/_index.scss b/src/app/controllers/views/ControllerList/ControllerListTable/_index.scss index 1be4c241c9..47ee7988a6 100644 --- a/src/app/controllers/views/ControllerList/ControllerListTable/_index.scss +++ b/src/app/controllers/views/ControllerList/ControllerListTable/_index.scss @@ -23,9 +23,5 @@ .upgrade-col { @include breakpoint-widths(0, 0, 0, 10rem, 10rem); } - - .images-col { - @include breakpoint-widths(0, 0, 14rem, 14rem, 14rem); - } } }