Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

Commit

Permalink
[web] Improve link descriptive text
Browse files Browse the repository at this point in the history
  • Loading branch information
maxijonson committed Jul 20, 2023
1 parent 9c4e7c6 commit 7bbb7a8
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions packages/web/src/components/inputs/ApiKeyInput.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PasswordInput, Anchor, Text } from "@mantine/core";
import { PasswordInput, Anchor } from "@mantine/core";

interface ApiKeyInputProps {
value: string;
Expand All @@ -12,15 +12,12 @@ const ApiKeyInput = ({ value, onChange }: ApiKeyInputProps) => {
onChange={(event) => onChange(event.currentTarget.value)}
label="OpenAI API Key"
description={
<Text>
You can find yours{" "}
<Anchor
href="https://platform.openai.com/account/api-keys"
target="_blank"
>
here
</Anchor>
</Text>
<Anchor
href="https://platform.openai.com/account/api-keys"
target="_blank"
>
Go to OpenAI API Keys
</Anchor>
}
/>
);
Expand Down

0 comments on commit 7bbb7a8

Please sign in to comment.