From b0c7c65020f44d08b64952699b72e4a800bf8922 Mon Sep 17 00:00:00 2001 From: Skander Mzali Date: Mon, 9 Sep 2024 15:12:13 -0700 Subject: [PATCH] Add missing type param for selecting bucket field in detections table --- ui/src/components/DetectionsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/DetectionsTable.tsx b/ui/src/components/DetectionsTable.tsx index 1637497a..8ba673ed 100644 --- a/ui/src/components/DetectionsTable.tsx +++ b/ui/src/components/DetectionsTable.tsx @@ -42,7 +42,7 @@ export default function DetectionsTable({ onDetectionUpdate, }: { detections: Detection[]; - feed: Pick; + feed: Pick; candidate: Pick; onDetectionUpdate: () => void; }) {