Template compile error at line 22:77
1 |
2 |
3 | module.exports.default = function BoutiqueCalendar(props: CalendarTemplateProps) {
4 | const {
5 | title,
6 | year,
7 | month,
8 | habits,
9 | landscape,
10 | paperSize,
11 | isPrintMode,
12 | weekStartDay = 1,
13 | habitFontSize = "m",
14 | } = props;
15 |
16 | // --- Dimensions ---
17 | const dimensions = {
18 | a4: { portrait: { w: 740, h: 1046 }, landscape: { w: 1046, h: 740 } },
19 | a3: { portrait: { w: 1046, h: 1480 }, landscape: { w: 1480, h: 1046 } },
20 | a2: { portrait: { w: 1480, h: 2093 }, landscape: { w: 2093, h: 1480 } },
21 | a1: { portrait: { w: 2093, h: 2960 }, landscape: { w: 2960, h: 2093 } },
→ 22 | letter: { portrait: { w: 720, h: 932 }, landscape: { w: 932, h: 720 } },
Unexpected token, expected "," (22:77)