Skip to content

Commit

Permalink
loading -> isLoading
Browse files Browse the repository at this point in the history
  • Loading branch information
yuwenmemon committed Aug 4, 2022
1 parent 2bb0f2f commit 3141a4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/SetPasswordPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const propTypes = {
error: PropTypes.string,

/** Whether a sign on form is loading (being submitted) */
loading: PropTypes.bool,
isLoading: PropTypes.bool,
}),

/** The credentials of the logged in person */
Expand Down Expand Up @@ -120,7 +120,7 @@ class SetPasswordPage extends Component {
<View>
<FormAlertWithSubmitButton
buttonText={buttonText}
isLoading={this.props.account.loading}
isLoading={this.props.account.isLoading}
onSubmit={this.validateAndSubmitForm}
containerStyles={[styles.mb2, styles.mh0]}
message={error}
Expand Down

0 comments on commit 3141a4d

Please sign in to comment.