Skip to content

Commit 8c1ecae

Browse files
authored
Fix join slack button (#3460)
* Fix join slack button * run prettier on changes
1 parent 862d692 commit 8c1ecae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

web-app/src/screens/Console/License/LicensePlans.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,9 @@ const LicensePlans = ({ licenseInfo }: IRegisterStatus) => {
213213
}}
214214
>
215215
{getButton(
216-
`https://min.io/signup`,
216+
element.planType === "commercial"
217+
? `https://min.io/signup`
218+
: `https://slack.min.io`,
217219
element.planType === "commercial" ? "Subscribe" : "Join Slack",
218220
element.planType === "commercial" ? "callAction" : "regular",
219221
)}

0 commit comments

Comments
 (0)