-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor add form #103
base: dev
Are you sure you want to change the base?
Refactor add form #103
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! Just a pesky console.log
added - seems a shame since you're removing them in one of the commits!
<option>Select a skill</option> | ||
{skills.map((skill) => ( | ||
<option value={skill}>{skillLabel(skill)}</option> | ||
))} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
// import fakeData from "../fakeData.json"; | ||
import AddForm from "./AddForm"; | ||
|
||
import fakeData from "../fakeData.json"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like this is loading dummy data for testing. Is this needed here?
What changes have you made?
Provide a short description of the changes you made and, if necessary, the reasons for these changes.
AddForm.js
component toLearningObjectiveAddForm.js
-Removed unused code and all
console.logs