Skip to content

Commit

Permalink
fix(forms): fix create application error 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
brionmario committed Apr 16, 2019
1 parent f9f6598 commit bf89929
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/forms/applications/create-application/submit.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ function submit(values, dispatch, props) {
const body = {
name: values.name,
developer: values.developer,
type: values.type.value,
genre: values.genre.value,
type: values.type.value.id,
genre: values.genre.value.id,
description: values.description,
public_sharing: values.sharing
};
Expand Down

0 comments on commit bf89929

Please sign in to comment.