Skip to content

Commit

Permalink
fix: sentry error products page (#20375)
Browse files Browse the repository at this point in the history
fix sentry error
  • Loading branch information
raquelmsmith authored Feb 15, 2024
1 parent 2fb1358 commit d0d7805
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/billing/billingProductLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export const billingProductLogic = kea<billingProductLogicType>([
if (scrollToProductKey && scrollToProductKey === props.product.type) {
const { currentPlan } = values.currentAndUpgradePlans

if (currentPlan.initial_billing_limit) {
if (currentPlan?.initial_billing_limit) {
actions.setProductSpecificAlert({
status: 'warning',
title: 'Billing Limit Automatically Applied',
Expand Down

0 comments on commit d0d7805

Please sign in to comment.