Add billing limit

This commit is contained in:
Dries Augustyns
2025-12-04 19:23:04 +01:00
parent 6cdbc43c8e
commit 5fc5bc68fd
4 changed files with 175 additions and 37 deletions
+5 -1
View File
@@ -639,7 +639,11 @@ export default function Settings() {
</Card>
{/* Billing Limits */}
<BillingLimits projectId={activeProject.id} hasSubscription={!!activeProject.subscription} />
<BillingLimits
projectId={activeProject.id}
hasSubscription={!!activeProject.subscription}
billingEnabled={billingEnabled}
/>
{/* Current Month Consumption */}
<BillingConsumption projectId={activeProject.id} hasSubscription={!!activeProject.subscription} />