Skip to content

Commit

Permalink
remove undefined formData var (#2254)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschwarz2030 authored Jan 30, 2024
1 parent 7ddf207 commit c8c4471
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,7 @@ export class EditChallenges extends Component {
finish={this.finish}
isLongForm={true}
renderStep={({
activeStep,
nextStep,
activeStep
}) => {

// Override the standard form-field description renderer with our own that
Expand Down Expand Up @@ -389,8 +388,8 @@ export class EditChallenges extends Component {
formData={this.state.confirmModal}
submit={() => {
this.toggleConfirmModal(false)
this.handleSubmit(formData, nextStep)}
}
this.handleSubmit()
}}
cancel={() => {
this.toggleConfirmModal(false)
}}
Expand Down

0 comments on commit c8c4471

Please sign in to comment.