Skip to content

Commit df99679

Browse files
authored
Remove duplicate ref=con in License page buttons (#2993)
1 parent 2d94018 commit df99679

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

portal-ui/src/screens/Console/License/LicensePlans.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,6 @@ const LicensePlans = ({ licenseInfo }: IRegisterStatus) => {
325325
}
326326
}, [isSmallScreen, currentPlan]);
327327

328-
const linkTracker = `?ref=con`;
329-
330328
const featureList = FEATURE_ITEMS;
331329
return (
332330
<Fragment>
@@ -609,7 +607,7 @@ const LicensePlans = ({ licenseInfo }: IRegisterStatus) => {
609607
})}
610608
<Box className="button-box">
611609
{getButton(
612-
`https://slack.min.io${linkTracker}`,
610+
`https://slack.min.io`,
613611
"Join Slack",
614612
"regular",
615613
LICENSE_PLANS.COMMUNITY,
@@ -653,7 +651,7 @@ const LicensePlans = ({ licenseInfo }: IRegisterStatus) => {
653651

654652
<Box className="button-box">
655653
{getButton(
656-
`https://min.io/signup${linkTracker}`,
654+
`https://min.io/signup`,
657655
!PAID_PLANS.includes(currentPlan)
658656
? "Subscribe"
659657
: "Login to SUBNET",
@@ -708,7 +706,7 @@ const LicensePlans = ({ licenseInfo }: IRegisterStatus) => {
708706
})}
709707
<Box className="button-box">
710708
{getButton(
711-
`https://min.io/signup${linkTracker}`,
709+
`https://min.io/signup`,
712710
!PAID_PLANS.includes(currentPlan)
713711
? "Subscribe"
714712
: "Login to SUBNET",

0 commit comments

Comments
 (0)