mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
Merge pull request #1207 from codeflash-ai/webapp-build-fixes
some minor webapp build fixes
This commit is contained in:
commit
c46f254ec0
2 changed files with 2 additions and 2 deletions
|
|
@ -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's AI services and also to the GitHub App
|
||||
if you have installed it.
|
||||
</p>
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue