Skip to content

Commit df9c0fe

Browse files
committed
Fix plancard plan switch
Signed-off-by: Namanv509 <namanverma00260@gmail.com>
1 parent e01f2cf commit df9c0fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Pricing/PlanCard/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const PlanCard = ({ planData, isYearly, currency }) => {
5757
: formatPrice(x.monthlyprice)}
5858
</span>
5959
<span className="currency">{Currencies[currency]?.name ?? "USD"}</span>
60-
<span className="price-per">per user/year</span>
60+
<span className="price-per">per user /{isYearly ? "year" : "month"}</span>
6161
</div>
6262

6363
</div>

0 commit comments

Comments
 (0)