diff --git a/site/src/modules/users/AISeatCell.tsx b/site/src/modules/users/AISeatCell.tsx index 142cba304837f..696c58d0b00b4 100644 --- a/site/src/modules/users/AISeatCell.tsx +++ b/site/src/modules/users/AISeatCell.tsx @@ -1,4 +1,4 @@ -import { CircleCheckIcon, XIcon } from "lucide-react"; +import { CheckIcon } from "lucide-react"; import type { FC } from "react"; import { TableCell } from "#/components/Table/Table"; @@ -10,15 +10,18 @@ export const AISeatCell: FC = ({ hasAISeat }) => { return ( {hasAISeat ? ( - ) : ( - + className="text-content-disabled" + > + — + )} );