Skip to content

Commit b74fd46

Browse files
simonhampclaude
andcommitted
Fix billing summary to use annualized seat price instead of raw Stripe unit amount
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f7b6b03 commit b74fd46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Livewire/TeamManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ public function render()
180180
$qty = $item->quantity ?? 1;
181181

182182
if (Subscription::isExtraSeatPrice($item->price->id)) {
183-
$seatsCost = $unitAmount * $qty;
184183
$extraSeatsQty = $qty;
184+
$seatsCost = $extraSeatPrice * $qty;
185185
} else {
186186
$planPrice = $unitAmount;
187187
}

0 commit comments

Comments
 (0)