Fix CloudFront routing and TypeScript type safety

- Update CloudFront Function to handle Next.js static export .html files
- Fix TypeScript interface for color request service (add required user_phone field)
- Update ColorRequestForm component to include phone field
This commit is contained in:
DaX
2025-11-19 18:56:08 +01:00
parent f6f9da9c5b
commit 17edfc8794
3 changed files with 26 additions and 4 deletions

View File

@@ -111,7 +111,8 @@ export const colorRequestService = {
color_name: string;
material_type: string;
finish_type?: string;
user_email?: string;
user_email: string;
user_phone: string;
user_name?: string;
description?: string;
reference_url?: string;