fix: translation omission (#281)

This commit is contained in:
Redon
2023-03-29 11:11:16 +08:00
committed by GitHub
parent 00c6c72270
commit 6ef83b0cb6
3 changed files with 4 additions and 3 deletions
+2 -2
View File
@@ -51,8 +51,8 @@ export function cleanData(data: SupportedExportFormats): LatestExportFormat {
function currentDate() {
const date = new Date();
let month = date.getMonth() + 1;
let day = date.getDate();
const month = date.getMonth() + 1;
const day = date.getDate();
return `${month}-${day}`;
}