Skip to content

Commit

Permalink
Reword the "too many trials" banner to hopefully be clearer and also …
Browse files Browse the repository at this point in the history
…point out the existence of pay as you go
  • Loading branch information
williamstein committed Mar 14, 2024
1 parent b8890fa commit a82b149
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions src/packages/frontend/project/start-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,24 +125,27 @@ export function StartButton() {
style={{ margin: "10px 20%" }}
message={
<span style={{ fontWeight: 500, fontSize: "14pt" }}>
Too many trial projects!
Too Many Free Trial Projects
</span>
}
type="error"
description={
<span style={{ fontSize: "12pt" }}>
Unfortunately, there are too many{" "}
<A href={DOC_TRIAL}>trial projects</A> running on CoCalc right
now and paying customers have priority. Try running your trial
project later or{" "}
There is no more capacity for{" "}
<A href={DOC_TRIAL}>Free Trial projects</A> on CoCalc right now.{" "}
<br />
<a
onClick={() => {
redux.getActions("page").set_active_tab("account");
redux.getActions("account").set_active_tab("licenses");
redux
.getProjectActions(project_id)
.set_active_tab("upgrades");
}}
>
<u>upgrade using a license</u>.
</a>
Upgrade your project
</a>{" "}
using{" "}
<A href="https://doc.cocalc.com/licenses.html">a license</A> or{" "}
<A href="https://doc.cocalc.com/paygo.html">pay as you go</A>.
</span>
}
/>
Expand Down

0 comments on commit a82b149

Please sign in to comment.