Merge pull request #1207 from codeflash-ai/webapp-build-fixes

some minor webapp build fixes
This commit is contained in:
Saurabh Misra 2024-11-07 23:26:14 -08:00 committed by GitHub
commit c46f254ec0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -58,7 +58,7 @@ export default async function APIKeyGenerator(): Promise<JSX.Element> {
<>
{" "}
<p className="leading-7 mt-6">
These API keys are used to authenticate your requests to Codeflash's AI services and also to the GitHub App
These API keys are used to authenticate your requests to Codeflash&apos;s AI services and also to the GitHub App
if you have installed it.
</p>
<p>

View file

@ -8,7 +8,7 @@ import { useRouter } from "next/navigation"
export default function FirstPage({ className = "" }: FirstPageProps) {
const [emailInput, setEmailInput] = useState("")
const [customOption, setCustomOption] = useState("")
const [customOption] = useState("")
const [isSubmitted, setIsSubmitted] = useState(false)
const [emailInputElement, setEmailInputElement] = useState<HTMLInputElement | null>(null)