diff --git a/packages/website/src/components/ApplyForm.js b/packages/website/src/components/ApplyForm.js
index 30bb3ed7..8bf13aff 100644
--- a/packages/website/src/components/ApplyForm.js
+++ b/packages/website/src/components/ApplyForm.js
@@ -15,6 +15,7 @@ function ApplyForm() {
const [state, setState] = useState({ status: 'stalled', message: '' });
const [url, setUrl] = useState('');
const [email, setEmail] = useState('');
+ const [repo, setRepo] = useState('');
const handleSetUrl = (event) => {
setUrl(event.target.value);
@@ -22,6 +23,9 @@ function ApplyForm() {
const handleSetEmail = (event) => {
setEmail(event.target.value);
};
+ const handleSetRepo = (event) => {
+ setRepo(event.target.value);
+ };
const onSubmit = (event) => {
event.preventDefault();
@@ -151,6 +155,29 @@ function ApplyForm() {
and grant access to your Algolia application.
+