When you save your first person, the list of people on the left tries to add a row for them. However the row insertion logic relies on there already being an existing person row in that list so it can insert the new person either before or after them. When the collection only contains one item, the new person you are trying to insert, there is no existing person to use while inserting, so the DOM insertion fails and the API call to persist the new person is never sent.
When you save your first person, the list of people on the left tries to add a row for them. However the row insertion logic relies on there already being an existing person row in that list so it can insert the new person either before or after them. When the collection only contains one item, the new person you are trying to insert, there is no existing person to use while inserting, so the DOM insertion fails and the API call to persist the new person is never sent.