diff --git a/src/utils/printTemplates.ts b/src/utils/printTemplates.ts index 1f636539..6e0db731 100644 --- a/src/utils/printTemplates.ts +++ b/src/utils/printTemplates.ts @@ -109,7 +109,7 @@ export async function getPrintTemplatePropValues( function getDate(dateString: string): string { const date = new Date(dateString); - date.setMonth(date.getMonth() - 1); + date.setMonth(date.getMonth()); return `${date.toLocaleString('default', { month: 'short',