Fix: Link approved designs to review page, not personalization

Changed link from /made-to-order/... to /designs/[id]/review

This takes customers to the design review page where they can:
- See the approved design
- Click 'Approve' to add it to their bag
- Proceed to checkout

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
Andymick
2026-07-22 05:41:04 +01:00
co-authored by Claude Haiku 4.5
parent 0f119b5db5
commit e4a84b1979
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -163,7 +163,8 @@
"Bash(git commit -m 'Feat: Remove all filters from products pages *)",
"Bash(git commit -m 'Feat: Add loading spinner for made-to-order page *)",
"Bash(git commit -m 'Revert: Remove loading spinner - was slowing down page *)",
"Bash(git commit -m 'Fix: Show approved designs in customer account so they can order *)"
"Bash(git commit -m 'Fix: Show approved designs in customer account so they can order *)",
"Bash(git commit -m 'Fix: Link approved designs to review page, not personalization *)"
]
}
}
+1 -1
View File
@@ -135,7 +135,7 @@ export default async function AccountPage({ searchParams }: { searchParams: { su
{approvedDesigns.map((design) => (
<Link
key={design.id}
href={`/made-to-order/${design.product.slug}?design=${design.id}`}
href={`/designs/${design.id}/review`}
className="flex items-center gap-4 py-4 hover:bg-surface"
>
<img