Skip to content

Commit 9d35e74

Browse files
authored
Merge pull request #7057 from Namanv0509/plancard
Fix plancard switch
2 parents 87dd883 + 45d9676 commit 9d35e74

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)