- problem was I was manually adding the "Personal" course with `id` and `parentId` equal to `0` (a number/int) rather than `'0'` (a string) and thus an if statement was giving a fulty conclusion because of a type "error".
- I fixed the problem by changing it to `'0'` for the personal course.
### #268
- Need to fix the placement of the dropdown menus and the `edit project id` and `configure project` buttons`
### #269
- There was a problem in the if statement that would determine if a configuration is savable.
- This allowed projects to be configured with no feedback selected
- This is not allowed so I fixed the if statement (I changed the && to ||)
- This was a classic logic error
## API's and Links To Add On Wiki
- these links are very useful, and I think I will make it mandatory for new developers to read them before they begin development on the project themselves