Skip to content

Commit

Permalink
clean up after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
yhabib committed Dec 18, 2024
1 parent 681831e commit a07715b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { i18n } from "$lib/stores/i18n";
import type { ReportingPeriod } from "$lib/types/reporting";
let period: ReportingPeriod = "all";
export let period: ReportingPeriod = "all";
const options: Array<{
value: ReportingPeriod;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
CsvGenerationError,
FileSystemAccessError,
generateCsvFileToSave,
periodToDateRangeTimestampts,
type CsvHeader,
type TransactionsCsvData,
} from "$lib/utils/reporting.utils";
Expand Down Expand Up @@ -124,7 +123,7 @@
label: $i18n.reporting.timestamp,
},
];
const fileName = `icp_transactions_export_${formatDateCompact(new Date())}`;
const fileName = `icp_transactions_export_${period}_${formatDateCompact(new Date())}`;
await generateCsvFileToSave({
datasets,
Expand Down

0 comments on commit a07715b

Please sign in to comment.