Skip to content

Commit f2f0d1b

Browse files
authored
Merge branch 'codesandbox:main' into main
2 parents 5086a3a + 0f00d18 commit f2f0d1b

File tree

28 files changed

+412
-441
lines changed

28 files changed

+412
-441
lines changed

packages/app/src/app/components/Create/ImportTemplate/ImportTemplate.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const ImportTemplate = () => {
104104
<a
105105
target="_blank"
106106
rel="noreferrer noopener"
107-
href={docsUrl('/learn/sandboxes/synced-templates')}
107+
href={docsUrl('/learn/vm-sandboxes/synced-templates#what-are-synced-templates')}
108108
>
109109
here
110110
</a>

packages/app/src/app/components/StripeMessages/AcquisitionAnnouncement.tsx

Lines changed: 0 additions & 43 deletions
This file was deleted.

packages/app/src/app/components/WorkspaceSetup/Summary.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ export const Summary: React.FC<{
2828

2929
const isAnnual =
3030
newSubscription?.billingInterval === SubscriptionInterval.Yearly;
31-
const allowAnnualSwitch = flow !== 'manage-addons';
31+
32+
// This will enable annual switch if we decide to bring it back
33+
const allowAnnualSwitch = false;
3234

3335
return (
3436
<Stack
@@ -101,7 +103,7 @@ export const Summary: React.FC<{
101103
)}
102104

103105
<Text size={3}>
104-
Additional VM credits are available on-demand for $0.018/credit.
106+
Additional VM credits are available on-demand for $0.015/credit.
105107
<br />
106108
Spending limit: ${spendingLimit}
107109
</Text>

packages/app/src/app/components/WorkspaceSetup/steps/ChangeLegacyPlan.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export const ChangeLegacyPlan: React.FC<StepProps> = ({
6868
</Stack>
6969

7070
<Text>
71-
Additional VM credits are available on-demand for $0.018/credit.
71+
Additional VM credits are available on-demand for $0.015/credit.
7272
<br />
7373
Spending limit: ${checkout.spendingLimit} / month
7474
</Text>

packages/app/src/app/components/WorkspaceSetup/steps/ChangePlan.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export const ChangePlan: React.FC<StepProps> = ({
7777
</Stack>
7878

7979
<Text>
80-
Additional VM credits are available on-demand for $0.018/credit.
80+
Additional VM credits are available on-demand for $0.015/credit.
8181
<br />
8282
Spending limit: ${checkout.spendingLimit} / month
8383
</Text>

packages/app/src/app/components/WorkspaceSetup/steps/FAQ.tsx

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,15 @@ const content = {
123123
{
124124
question:
125125
'How much do credits cost and how can I add more to my workspace?',
126-
answer: `VM credits are only used on Devboxes and repositories, to translate virtual machine (VM) runtime per hour into precise costs. They are priced at $0.018 each.
126+
answer: `VM credits are only used on Devboxes and repositories, to translate virtual machine (VM) runtime per hour into precise costs. They are priced at $0.015 each.
127127
128128
You can conveniently purchase credits as add-ons to your base package. Adding more credits is a breeze. From your workspace dashboard, go to the settings and navigate to billing. You'll find the option to add to or upgrade your plan effortlessly.`,
129129
},
130130
{
131131
question: 'What is the ideal plan for my team size?',
132132
answer: `The base Pro plan includes up to 40 hours of runtime per month in our Nano VMs (2 vCPU + 4 GB RAM), which is an excellent place to start if you're an individual developer or a small team.
133133
134-
If you have a larger team or require additional VM usage, you can either rely on on-demand credits ($0.018/credit) or purchase a discounted add-on package of VM credits.
134+
If you have a larger team or require additional VM usage, you can either rely on on-demand credits ($0.015/credit) or purchase a discounted add-on package of VM credits.
135135
136136
For example, a team with 7 collaborators, each using 2 hours of VM runtime per day on our default VM size (Micro) would require 8400 credits. The 7400 credits required on top of the 1000 included in the base Pro plan can be obtained either on-demand or by purchasing two add-on packages of 4000 VM credits each.`,
137137
},
@@ -148,25 +148,15 @@ const content = {
148148
question:
149149
'What will happen when I hit my workspace member limit on a Pro plan? Will I have the option to pay for more members individually?',
150150
answer:
151-
'If you hit the workspace member limit, please reach out to our <a href=mailto:[email protected]>customer team</a> to discuss a custom plan to suit your needs.',
151+
'If you hit the workspace member limit, please reach out to our <a href=https://www.together.ai/contact-sales>sales team</a> to discuss a custom plan to suit your needs.',
152152
},
153153
{
154-
question:
155-
'I’m currently on a plan with annual billing. Do your new plans have an annual option?',
156-
answer:
157-
'We can offer annual billing for custom <a href=https://codesandbox.io/enterprise>Enterprise plans</a>. However, at the moment, our new Pro plan is only available with monthly billing. We will introduce annual billing in the near future. ',
158-
},
159-
{
160-
question: 'My Sandbox or Devbox is frozen. What does that mean?',
161-
answer: `In Devboxes and repositories, the VM will become frozen if the workspace does not have enough available credits to run a VM. You may encounter a frozen state if:
154+
question: 'My Sandbox is frozen. What does that mean?',
155+
answer: `In VM Sandboxes and repositories, the VM will become frozen if the workspace does not have enough available credits to run a VM. You may encounter a frozen state if:
162156
- you are on a Free workspace and have run out of credits;
163157
- you are on a Pro workspace but your credit spend has hit the spending limit.
164158
165-
To get out of the frozen state, you can either <a href=/upgrade>upgrade</a> to Pro (if you are on Free) or adjust your spending limit. Otherwise, you must wait until the start of the next billing cycle for your credits to renew.
166-
167-
You may also experience a similar “frozen” state with Sandboxes. When the Sandbox limit included in your workspace is exceeded, Sandboxes over the limit will become read-only.
168-
169-
To regain edit access to Sandboxes over the limit, you can either <a href=/upgrade>upgrade</a> to Pro (if you are on Free) or increase your Sandbox limit with <a href=/docs/learn/plans/plans#add-ons>add-ons</a>.`,
159+
To get out of the frozen state, you can either <a href=/upgrade>upgrade</a> to Pro (if you are on Free) or adjust your spending limit. Otherwise, you must wait until the start of the next billing cycle for your credits to renew.`,
170160
},
171161
{
172162
question: 'What is your cancelation and refund policy?',

0 commit comments

Comments
 (0)