diff --git a/packages/web/src/components/inputs/ApiKeyInput.tsx b/packages/web/src/components/inputs/ApiKeyInput.tsx index 4308bcd..2c8922f 100644 --- a/packages/web/src/components/inputs/ApiKeyInput.tsx +++ b/packages/web/src/components/inputs/ApiKeyInput.tsx @@ -1,4 +1,4 @@ -import { PasswordInput, Anchor, Text } from "@mantine/core"; +import { PasswordInput, Anchor } from "@mantine/core"; interface ApiKeyInputProps { value: string; @@ -12,15 +12,12 @@ const ApiKeyInput = ({ value, onChange }: ApiKeyInputProps) => { onChange={(event) => onChange(event.currentTarget.value)} label="OpenAI API Key" description={ - - You can find yours{" "} - - here - - + + Go to OpenAI API Keys + } /> );