From 48b2596ff25bd09ae0f17c5027cef962f8ab95ee Mon Sep 17 00:00:00 2001 From: Noemi Date: Mon, 30 Jun 2025 15:29:24 +0200 Subject: [PATCH] change file name --- .../components/AllBandiPreInstructorTableAsync/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/BandiPreInstructor/components/AllBandiPreInstructorTableAsync/index.js b/src/pages/BandiPreInstructor/components/AllBandiPreInstructorTableAsync/index.js index 823f916..50c3c0a 100644 --- a/src/pages/BandiPreInstructor/components/AllBandiPreInstructorTableAsync/index.js +++ b/src/pages/BandiPreInstructor/components/AllBandiPreInstructorTableAsync/index.js @@ -104,7 +104,7 @@ const AllBandiPreInstructorTableAsync = () => { const url = window.URL.createObjectURL(file); const link = document.createElement('a'); link.href = url; - link.setAttribute('download', `call-${callId}-applications-report.csv`); + link.setAttribute('download', `call-${callId}-applications-ranking.csv`); document.body.appendChild(link); link.click(); link.remove();