Skip to content

Commit

Permalink
fix: show tier table for mobile replay addon when on temporal free plan
Browse files Browse the repository at this point in the history
  • Loading branch information
patricio-posthog committed Feb 11, 2025
1 parent edca7e2 commit 4c41173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/scenes/billing/BillingProductPricingTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export const BillingProductPricingTable = ({

return (
<div className="pl-16 pb-8">
{product.tiered && tableTierData ? (
{(product.tiered || product.type === 'mobile_replay') && tableTierData ? (
<>
<LemonTable
stealth
Expand All @@ -212,7 +212,7 @@ export const BillingProductPricingTable = ({
}}
/>
<FeatureFlagUsageNotice product={product as BillingProductV2Type} />
<LemonBanner type="warning" className="text-sm pt-2">
<LemonBanner type="warning" className="text-sm pt-2 mt-2">
Tier breakdowns are updated once daily and may differ from the gauge above.
</LemonBanner>
</>
Expand Down

0 comments on commit 4c41173

Please sign in to comment.