Skip to content

Commit dcebe08

Browse files
committed
fix(webapp): blue docs button and inline-code concurrencyKey in the keys empty state
1 parent c8cbcd0 commit dcebe08

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.queues_.$queueParam

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.queues_.$queueParam/route.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ import { LinkButton } from "~/components/primitives/Buttons";
6565
import { RunsIcon } from "~/assets/icons/RunsIcon";
6666
import { InfoPanel } from "~/components/primitives/InfoPanel";
6767
import { Paragraph } from "~/components/primitives/Paragraph";
68-
import { TextLink } from "~/components/primitives/TextLink";
68+
import { InlineCode } from "~/components/code/InlineCode";
6969
import { ConcurrencyIcon } from "~/assets/icons/ConcurrencyIcon";
7070
import { BookOpenIcon } from "@heroicons/react/20/solid";
7171

@@ -451,17 +451,16 @@ function ConcurrencyKeysBlankState() {
451451
accessory={
452452
<LinkButton
453453
to={docsPath("/queue-concurrency")}
454-
variant="secondary/small"
454+
variant="docs/small"
455455
LeadingIcon={BookOpenIcon}
456456
>
457457
Concurrency docs
458458
</LinkButton>
459459
}
460460
>
461461
<Paragraph variant="small">
462-
This queue doesn't use concurrency keys. Add a concurrencyKey to your task to shard the
463-
queue per tenant/user. See the{" "}
464-
<TextLink to={docsPath("/queue-concurrency")}>concurrency docs</TextLink>.
462+
This queue doesn't use concurrency keys. Add <InlineCode>concurrencyKey</InlineCode> to
463+
your task to shard the queue per tenant/user.
465464
</Paragraph>
466465
</InfoPanel>
467466
</MainCenteredContainer>

0 commit comments

Comments
 (0)