Remove Portfolio line from receipts
All checks were successful
Build and Push Docker Images / docker (push) Successful in 1m1s

Remove portfolio ID display from both:
- Email receipt template (receipt.hbs)
- Digital receipt page (CheckoutSuccess.tsx)

Portfolio information is internal and not needed in customer-facing receipts.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Matt 2025-10-31 20:57:52 +01:00
parent 977ecb6d38
commit a23cdfe396
2 changed files with 0 additions and 14 deletions

View File

@ -373,12 +373,6 @@
<div class="icon" style="font-size: 64px; opacity: 0.6;">🌱</div> <div class="icon" style="font-size: 64px; opacity: 0.6;">🌱</div>
</div> </div>
<!-- Portfolio Info -->
<div class="detail-row">
<span class="detail-label" style="color: #475569 !important;">Portfolio</span>
<span class="detail-value" style="color: #0f172a !important;">#{{portfolioId}}</span>
</div>
<!-- Pricing Breakdown --> <!-- Pricing Breakdown -->
<div class="pricing-box" style="background-color: #f8fafc !important;"> <div class="pricing-box" style="background-color: #f8fafc !important;">
<div class="pricing-row"> <div class="pricing-row">

View File

@ -348,14 +348,6 @@ export default function CheckoutSuccess({
</div> </div>
</div> </div>
{/* Portfolio */}
<div className="flex justify-between items-center py-4 border-b border-slate-100">
<span className="text-slate-600 font-medium">Portfolio</span>
<span className="text-slate-800 font-semibold">
#{order.portfolioId}
</span>
</div>
{/* Pricing Breakdown */} {/* Pricing Breakdown */}
<div className="bg-slate-50 rounded-lg p-5 my-4 space-y-3"> <div className="bg-slate-50 rounded-lg p-5 my-4 space-y-3">
<div className="flex justify-between items-center"> <div className="flex justify-between items-center">