Update condition for rendering PlanIntervalSwitcher
Changed the condition to ensure PlanIntervalSwitcher is only rendered when there is more than one interval. This avoids unnecessary render when there's only a single interval.
This commit is contained in:
@@ -53,7 +53,7 @@ export function PricingTable({
|
|||||||
return (
|
return (
|
||||||
<div className={'flex flex-col space-y-8 xl:space-y-12'}>
|
<div className={'flex flex-col space-y-8 xl:space-y-12'}>
|
||||||
<div className={'flex justify-center'}>
|
<div className={'flex justify-center'}>
|
||||||
{intervals.length ? (
|
{intervals.length > 1 ? (
|
||||||
<PlanIntervalSwitcher
|
<PlanIntervalSwitcher
|
||||||
intervals={intervals}
|
intervals={intervals}
|
||||||
interval={interval}
|
interval={interval}
|
||||||
|
|||||||
Reference in New Issue
Block a user