Skip to content

Commit

Permalink
feat(publications): Publications author affiliation is now optional
Browse files Browse the repository at this point in the history
  • Loading branch information
tolbertncsa committed Aug 27, 2024
1 parent a997d78 commit 4b0ee76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/publications/helpers/thunks.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const savePublication = () => async (dispatch, getState) => {
const { formValid, missingFields } = validateForm(
publication,
["title", "publication_year", "publication_month"],
["first_name", "last_name", "affiliation"]
["first_name", "last_name"]
);

if (!formValid) {
Expand Down

0 comments on commit 4b0ee76

Please sign in to comment.