Skip to content

Commit a14c3f4

Browse files
patch(front): Rename plan names in the UI (#636)
## 📝 Description <img width="1230" height="768" alt="Screenshot 2025-10-09 at 16 08 35" src="https://github.com/user-attachments/assets/2bcec63b-4f6d-4a85-9e67-122f894ad025" /> ## ✅ Checklist - [x] I have tested this change - [ ] This change requires documentation update
1 parent f690e89 commit a14c3f4

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

front/assets/js/billing/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const Trial = (props: TrialProps) => {
8383
<tr>
8484
<td className="ph3 bb b--black-10 pt3 pb2 v-top bg-green white br3 br--top">
8585
<div className="f2">
86-
<span className="b">Startup</span>
86+
<span className="b">Cloud</span>
8787
</div>
8888
<div className="f5 pr3">
8989
Ideal for growing teams with frequent builds and

front/assets/js/billing/pages/plans_page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const ContactPlanSelection = () => {
7070
</div>
7171
<p className="f5 gray">
7272
Building frequently? Cut costs with the{` `}
73-
<span className="b">Scaleup plan</span>. It offers advanced control,
73+
<span className="b">Enterprise plan</span>. It offers advanced control,
7474
governance, and support SLAs, all in one annual package.
7575
</p>
7676
<p className="f5 gray pb3">
@@ -87,7 +87,7 @@ const ContactPlanSelection = () => {
8787
<tr>
8888
<td className="ph3 bb b--black-10 pt3 pb2 v-top bg-purple white br3 br--top">
8989
<div className="f2">
90-
<span className="b">Scaleup</span>
90+
<span className="b">Enterprise</span>
9191
</div>
9292
<div className="f5 pr3">
9393
For peak performance teams that build frequently.

front/lib/front/models/billing/plan_switch.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ defmodule Front.Models.Billing.PlanSwitch do
150150
defp available_plans do
151151
[
152152
Billing.PlanSwitch.AvailablePlan.new(
153-
name: "Startup - Cloud",
153+
name: "Cloud",
154154
type: :startup_cloud,
155155
description: "Pay only for used machine time, no seat costs.",
156156
features: [
@@ -164,7 +164,7 @@ defmodule Front.Models.Billing.PlanSwitch do
164164
]
165165
),
166166
Billing.PlanSwitch.AvailablePlan.new(
167-
name: "Startup - Hybrid",
167+
name: "Hybrid",
168168
type: :startup_hybrid,
169169
description: "Run jobs on your own infrastructure.",
170170
features: [

front/lib/front_web/templates/deployments/forms/_subject_rules.html.eex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<div class="bl b--light-gray pv2 ml2 pl3" data-component="user-access-details">
6464
<div class="ml2 measure">
6565
Advanced user access control for Deployment Targets is available only to
66-
Scaleup plan customers. Please contact our Support for more information.
66+
Enterprise plan customers. Please contact our Support for more information.
6767
</div>
6868
</div>
6969
</div>

front/test/support/stubs/billing.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ defmodule Support.Stubs.Billing do
7777
spendings = [
7878
stub_spending(
7979
plan_summary: stub_plan(:startup_hybrid),
80-
display_name: "Startup - Hybrid #{formatted_from} - #{formated_to}",
80+
display_name: "Hybrid #{formatted_from} - #{formated_to}",
8181
from_date: [seconds: from_date |> Timex.to_unix()],
8282
to_date: [seconds: to_date |> Timex.to_unix()],
8383
summary:
@@ -639,7 +639,7 @@ defmodule Support.Stubs.Billing do
639639
def stub_plan(:startup_hybrid, params) do
640640
[
641641
id: Ecto.UUID.generate(),
642-
name: "Startup - Hybrid - Postpaid",
642+
name: "Hybrid - Postpaid",
643643
slug: "startup_hybrid",
644644
details: [],
645645
charging_type: :CHARGING_TYPE_POSTPAID,
@@ -653,7 +653,7 @@ defmodule Support.Stubs.Billing do
653653
def stub_plan(:startup_hybrid_prepaid, params) do
654654
[
655655
id: Ecto.UUID.generate(),
656-
name: "Startup - Hybrid - Prepaid",
656+
name: "Hybrid - Prepaid",
657657
slug: "startup_hybrid",
658658
details: [],
659659
charging_type: :CHARGING_TYPE_PREPAID,

0 commit comments

Comments
 (0)