[PULSE-35] Billing tab: cancel and change-plan UI and copy #19

Merged
uz1mani merged 8 commits from staging into main 2026-02-09 14:16:21 +00:00
3 changed files with 382 additions and 108 deletions
Showing only changes of commit fe6530b464 - Show all commits

View File

@@ -871,8 +871,9 @@ export default function OrganizationSettings() {
) : invoices.length === 0 ? ( ) : invoices.length === 0 ? (
<div className="p-8 text-center text-neutral-500">No invoices found.</div> <div className="p-8 text-center text-neutral-500">No invoices found.</div>
) : ( ) : (
{invoices.map((invoice) => ( <>
<div key={invoice.id} className="px-4 py-3 flex items-center justify-between hover:bg-neutral-50 dark:hover:bg-neutral-800/50 transition-colors"> {invoices.map((invoice) => (
<div key={invoice.id} className="px-4 py-3 flex items-center justify-between hover:bg-neutral-50 dark:hover:bg-neutral-800/50 transition-colors">
<div className="flex items-center gap-3"> <div className="flex items-center gap-3">
<div> <div>
<span className="font-medium text-sm text-neutral-900 dark:text-white"> <span className="font-medium text-sm text-neutral-900 dark:text-white">
@@ -908,7 +909,8 @@ export default function OrganizationSettings() {
</div> </div>
</div> </div>
))} ))}
) </>
)
} }
</div> </div>
</div> </div>