Skip to content

Commit 85dd101

Browse files
committed
fix: add missing optional chain on billingPlanDetails.name
1 parent b81cf9a commit 85dd101

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/layout/containerButton.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
$organization?.billingPlanDetails?.group === BillingPlanGroup.Starter
1414
? `Upgrade to add more ${title.toLocaleLowerCase()}`
1515
: `You've reached the ${title.toLocaleLowerCase()} limit for the ${
16-
$organization?.billingPlanDetails.name
16+
$organization?.billingPlanDetails?.name
1717
} plan`;
1818
1919
export let disabled: boolean;

0 commit comments

Comments
 (0)