Skip to content

Commit efa9f00

Browse files
authored
fix: correct link to premium plan (coder#15914)
Fixes: coder#15911 The link target `/licensing` does not exist, so we need to link to _Pricing Plans_ instead.
1 parent 01f2ac0 commit efa9f00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/src/components/Paywall/Paywall.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const Paywall: FC<PaywallProps> = ({
5858
</ul>
5959
<div css={styles.learnButton}>
6060
<Button
61-
href={docs("/licensing")}
61+
href="https://coder.com/pricing#compare-plans"
6262
target="_blank"
6363
rel="noreferrer"
6464
startIcon={<span css={{ fontSize: 22 }}>&rarr;</span>}

site/src/components/Paywall/PopoverPaywall.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const PopoverPaywall: FC<PopoverPaywallProps> = ({
6262
</ul>
6363
<div css={styles.learnButton}>
6464
<Button
65-
href={docs("/licensing")}
65+
href="https://coder.com/pricing#compare-plans"
6666
target="_blank"
6767
rel="noreferrer"
6868
startIcon={<span css={{ fontSize: 22 }}>&rarr;</span>}

0 commit comments

Comments
 (0)