Skip to content

Commit 6efc4e0

Browse files
committed
OOM banner links to deprecated boosters, suggest editing the license instead
1 parent b4bf080 commit 6efc4e0

File tree

1 file changed

+3
-3
lines changed
  • src/packages/frontend/project/warnings

1 file changed

+3
-3
lines changed

src/packages/frontend/project/warnings/oom.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,17 +126,17 @@ export const OOMWarning: React.FC<{ project_id: string }> = ({
126126

127127
function renderUpgrade() {
128128
if (hasLicenseUpgrades) {
129-
const boostUrl = join(appBasePath, "/store/boost");
129+
const boostUrl = join(appBasePath, "/settings/licenses");
130130
return (
131131
<A href={boostUrl} style={{ fontWeight: "bold" }}>
132-
boost memory quota
132+
edit your license to increase its memory quota
133133
</A>
134134
);
135135
} else {
136136
const slUrl = join(appBasePath, "/store/site-license");
137137
return (
138138
<A href={slUrl} style={{ fontWeight: "bold" }}>
139-
upgrade memory quota
139+
purchase a license with higher memory quota
140140
</A>
141141
);
142142
}

0 commit comments

Comments
 (0)