Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { FC, ReactNode } from "react";
import { Link as RouterLink } from "react-router";
import { Alert, AlertDescription } from "#/components/Alert/Alert";
import { Link } from "#/components/Link/Link";
import { docs } from "#/utils/docs";
Expand Down Expand Up @@ -30,12 +31,7 @@ export const QueuedForCapacityCallout: FC<QueuedForCapacityCalloutProps> = ({

let action: ReactNode = (
<>
<Link
href={concurrencyDocsUrl}
target="_blank"
rel="noreferrer"
size="sm"
>
<Link href={concurrencyDocsUrl} target="_blank" rel="noreferrer">
Learn more
</Link>
.
Expand All @@ -45,7 +41,7 @@ export const QueuedForCapacityCallout: FC<QueuedForCapacityCalloutProps> = ({
action = (
<>
Contact your Coder account team or{" "}
<Link href="mailto:[email protected]" size="sm" showExternalIcon={false}>
<Link href="mailto:[email protected]" showExternalIcon={false}>
[email protected]
</Link>{" "}
to upgrade to unlimited concurrent agents.
Expand All @@ -54,21 +50,13 @@ export const QueuedForCapacityCallout: FC<QueuedForCapacityCalloutProps> = ({
} else if (canManageLicenses) {
action = (
<>
<Link
href="https://coder.com/trial"
target="_blank"
rel="noreferrer"
size="sm"
>
Start an unlimited trial
<Link asChild showExternalIcon={false}>
<RouterLink to="/deployment/premium">
Start an unlimited trial
</RouterLink>
</Link>{" "}
or{" "}
<Link
href={concurrencyDocsUrl}
target="_blank"
rel="noreferrer"
size="sm"
>
<Link href={concurrencyDocsUrl} target="_blank" rel="noreferrer">
learn more
</Link>
.
Expand Down
Loading