fix(checkout): correct import path for buildEmailItemsSection
All checks were successful
Staging Build / build (push) Successful in 2m43s

This commit is contained in:
DanielS
2026-07-10 10:02:52 +02:00
parent 4da386f693
commit 993c817dff
2 changed files with 2 additions and 4 deletions

View File

@@ -8,8 +8,7 @@ import { sendMail } from '@/utils/mail';
import { renderToBuffer } from '@react-pdf/renderer';
import React from 'react';
import { InvoicePDF } from '@/components/invoice-pdf';
import { buildEmailItemsSection } from '@/lib/actions/orders';
import { getOrderEmailTemplate } from '@/lib/actions/email-templates';
import { getOrderEmailTemplate, buildEmailItemsSection } from '@/lib/actions/email-templates';
function generateOrderNumber(prefix: 'BE' | 'AE' = 'AE'): string {
const year = new Date().getFullYear();

View File

@@ -7,8 +7,7 @@ import { createHash } from 'crypto';
import { renderToBuffer } from '@react-pdf/renderer';
import React from 'react';
import { InvoicePDF } from '@/components/invoice-pdf';
import { buildEmailItemsSection } from '@/lib/actions/orders';
import { getOrderEmailTemplate } from '@/lib/actions/email-templates';
import { getOrderEmailTemplate, buildEmailItemsSection } from '@/lib/actions/email-templates';
function generateOrderNumber(prefix: 'BE' | 'AE' = 'AE'): string {
const year = new Date().getFullYear();