Skip to content

Commit

Permalink
Fix join slack button (#3460)
Browse files Browse the repository at this point in the history
* Fix join slack button

* run prettier on changes
  • Loading branch information
tnfAngel authored Oct 28, 2024
1 parent 862d692 commit 8c1ecae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web-app/src/screens/Console/License/LicensePlans.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,9 @@ const LicensePlans = ({ licenseInfo }: IRegisterStatus) => {
}}
>
{getButton(
`https://min.io/signup`,
element.planType === "commercial"
? `https://min.io/signup`
: `https://slack.min.io`,
element.planType === "commercial" ? "Subscribe" : "Join Slack",
element.planType === "commercial" ? "callAction" : "regular",
)}
Expand Down

0 comments on commit 8c1ecae

Please sign in to comment.