feat: Complete checkout overhaul with Stripe PaymentIntent integration and abandoned cart recovery

This commit is contained in:
Codex Agent
2025-10-07 22:25:03 +02:00
parent dd5545605c
commit aa8c6c67c5
38 changed files with 1848 additions and 878 deletions

View File

@@ -21,7 +21,7 @@ export const useLocalizedRoutes = () => {
const trimmed = path.trim();
const normalized = trimmed.startsWith('/') ? trimmed : `/${trimmed}`;
console.debug('[useLocalizedRoutes] Resolved path', { input: path, normalized, locale });
// console.debug('[useLocalizedRoutes] Resolved path', { input: path, normalized, locale });
// Since prefix-free, return plain path. Locale is handled via session.
return normalized;