From 7bbb7a8262b06574503b790e9ceb87deed5f0a6f Mon Sep 17 00:00:00 2001 From: Tristan Chin Date: Thu, 20 Jul 2023 00:50:12 -0400 Subject: [PATCH] [web] Improve link descriptive text --- .../web/src/components/inputs/ApiKeyInput.tsx | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) 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 + } /> );