{tool.landscape?.logo && (
diff --git a/pages/tools/components/ToolingTable.tsx b/pages/tools/components/ToolingTable.tsx
index ba68efb1b..95bdc6ec7 100644
--- a/pages/tools/components/ToolingTable.tsx
+++ b/pages/tools/components/ToolingTable.tsx
@@ -9,6 +9,7 @@ import React, {
import { Headline2 } from '~/components/Headlines';
import InfoIcon from '~/public/icons/icons8-info.svg';
import OutLinkIcon from '~/public/icons/outlink.svg';
+import { Button } from '~/components/ui/button';
import toTitleCase from '../lib/toTitleCase';
import type { GroupedTools, Transform } from '../hooks/useToolsTransform';
@@ -400,7 +401,8 @@ const TableSortableColumnHeader = ({
return (
-
+
);
};
diff --git a/pages/tools/components/ui/Checkbox.tsx b/pages/tools/components/ui/Checkbox.tsx
index 934a93f1b..4337e945a 100644
--- a/pages/tools/components/ui/Checkbox.tsx
+++ b/pages/tools/components/ui/Checkbox.tsx
@@ -7,12 +7,14 @@ export default function Checkbox({
name,
checked,
disabled,
+ onChange,
}: {
label: string;
value: string;
name: string;
checked?: boolean;
disabled?: boolean;
+ onChange?: (checked: boolean) => void;
}) {
return (