Skip to content

Commit

Permalink
Properly triggers a change to the form values object so Formik knows …
Browse files Browse the repository at this point in the history
…it's dirty (#21021)
  • Loading branch information
krishnaglick authored Jan 4, 2023
1 parent f9563d2 commit 4251dfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function useFormikOauthAdapter(connector: ConnectorDefinitionSpecification): {
values
);
} else {
newValues = merge(values, {
newValues = merge({}, values, {
connectionConfiguration: completeOauthResponse,
});
}
Expand Down

0 comments on commit 4251dfe

Please sign in to comment.