We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2d3733 commit 1b6d2caCopy full SHA for 1b6d2ca
1 file changed
apps/web/src/features/datahub/pages/DataHubPage.tsx
@@ -42,6 +42,13 @@ export const DataHubPage = () => {
42
43
const handleExportSelection = (option: 'CSV' | 'Excel' | 'JSON') => {
44
const baseFilename = `${currentUser!.username}_${new Date().toISOString()}`;
45
+ addNotification({
46
+ message: t({
47
+ en: 'Downloading entries, please wait...',
48
+ fr: 'Téléchargement des entrées, veuillez patienter...'
49
+ }),
50
+ type: 'info'
51
+ });
52
getExportRecords()
53
.then((data): any => {
54
switch (option) {
0 commit comments