chore: -rm comment

This commit is contained in:
amhsirak
2024-11-20 05:14:57 +05:30
parent f5154b21cc
commit 4844e63358

View File

@@ -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;' });