diff --git a/client/src/webpages/dashboard/investigation/InvestigationTag.tsx b/client/src/webpages/dashboard/investigation/InvestigationTag.tsx index 91c72e649..04b628d3d 100644 --- a/client/src/webpages/dashboard/investigation/InvestigationTag.tsx +++ b/client/src/webpages/dashboard/investigation/InvestigationTag.tsx @@ -1,13 +1,6 @@ -export default function InvestigationTag(props: { - title: string; - key: string | number; -}) { - const { title, key } = props; +export default function InvestigationTag({ title }: { title: string }) { return ( -
+
{title}
);