Skip to content

Commit

Permalink
Merge pull request #13854 from strapi/fix/13853-get-trad
Browse files Browse the repository at this point in the history
EditViewDataManagerProvider: Fix missing params getAPIInnerErrors
  • Loading branch information
gu-stav committed Jul 26, 2022
2 parents 8c42696 + 9b32167 commit c83427e
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -310,7 +310,7 @@ const EditViewDataManagerProvider = ({
} catch (err) {
errors = {
...errors,
...getAPIInnerErrors(err),
...getAPIInnerErrors(err, { getTrad }),
};
}

Expand Down Expand Up @@ -346,7 +346,7 @@ const EditViewDataManagerProvider = ({
} catch (err) {
errors = {
...errors,
...getAPIInnerErrors(err),
...getAPIInnerErrors(err, { getTrad }),
};
}

Expand Down

0 comments on commit c83427e

Please sign in to comment.