export default function submittedUpdates(state = [], action) {
  switch(action.type) {
  case SUBMIT_UPDATE:
    if (!state.includes(action.pledgeId)) {
      return state.concat(action.pledgeId)