diff --git a/client/src/components/manageProjects/addProject.js b/client/src/components/manageProjects/addProject.js index d7209dfe..ba6d9052 100644 --- a/client/src/components/manageProjects/addProject.js +++ b/client/src/components/manageProjects/addProject.js @@ -26,13 +26,12 @@ function addProject() { addressValue: '', addressError: 'Invalid address', }, - // Leaving incase we want to add this back in for updating projects - // { - // label: 'GitHub Identifier', - // name: 'githubIdentifier', - // type: 'text', - // placeholder: 'Enter GitHub identifier', - // }, + { + label: 'GitHub Identifier', + name: 'githubIdentifier', + type: 'text', + placeholder: 'Enter GitHub identifier', + }, { label: 'GitHub URL', name: 'githubUrl', @@ -51,13 +50,12 @@ function addProject() { type: 'text', placeholder: 'htttps://drive.google.com/', }, - // Leaving incase we want to add this back in for updating projects - // { - // label: 'HFLA Website URL', - // name: 'hflaWebsiteUrl', - // type: 'text', - // placeholder: 'htttps://hackforla.org/projects/', - // }, + { + label: 'HFLA Website URL', + name: 'hflaWebsiteUrl', + type: 'text', + placeholder: 'htttps://hackforla.org/projects/', + }, ]; return ( diff --git a/client/src/components/manageProjects/editProject.js b/client/src/components/manageProjects/editProject.js index fd53d736..3663e6e2 100644 --- a/client/src/components/manageProjects/editProject.js +++ b/client/src/components/manageProjects/editProject.js @@ -77,13 +77,12 @@ const EditProject = ({ addressValue: '', addressError: 'Invalid address', }, - // Leaving incase we want to add this back in for updating projects - // { - // label: 'GitHub Identifier', - // name: 'githubIdentifier', - // type: 'text', - // placeholder: 'Enter GitHub identifier', - // }, + { + label: 'GitHub Identifier', + name: 'githubIdentifier', + type: 'text', + placeholder: 'Enter GitHub identifier', + }, { label: 'GitHub URL', name: 'githubUrl', @@ -102,13 +101,12 @@ const EditProject = ({ type: 'text', value: projectToEdit.googleDriveUrl, }, - // Leaving incase we want to add this back in for updating projects - // { - // label: 'HFLA Website URL', - // name: 'hflaWebsiteUrl', - // type: 'text', - // value: projectToEdit.hflaWebsiteUrl, - // }, + { + label: 'HFLA Website URL', + name: 'hflaWebsiteUrl', + type: 'text', + value: projectToEdit.hflaWebsiteUrl, + }, ]; // Get project recurring events when component loads