From 4844e63358c65877f4e5f56a6b665df0aec1dd7e Mon Sep 17 00:00:00 2001 From: amhsirak Date: Wed, 20 Nov 2024 05:14:57 +0530 Subject: [PATCH] chore: -rm comment --- src/components/molecules/RunContent.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/molecules/RunContent.tsx b/src/components/molecules/RunContent.tsx index c0beb51e..ff414628 100644 --- a/src/components/molecules/RunContent.tsx +++ b/src/components/molecules/RunContent.tsx @@ -58,7 +58,6 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe return [header, ...rows].join('\n'); }; - // Function to download CSV file when called const downloadCSV = () => { const csvContent = convertToCSV(tableData, columns); const blob = new Blob([csvContent], { type: 'text/csv;charset=utf-8;' });