feat: add translation for runs table

This commit is contained in:
RohitR311
2024-12-21 13:39:52 +05:30
parent 413d488cbb
commit 85a32b5e39

View File

@@ -105,7 +105,7 @@ export const RunsTable: React.FC<RunsTableProps> = ({
}));
setRows(parsedRows);
} else {
notify('error', 'No runs found. Please try again.');
notify('error', t('runstable.notifications.no_runs'));
}
};
@@ -118,7 +118,7 @@ export const RunsTable: React.FC<RunsTableProps> = ({
const handleDelete = () => {
setRows([]);
notify('success', 'Run deleted successfully');
notify('success', t('runstable.notifications.delete_success'));
fetchRuns();
};