From 30126e3026649d026c735a2bb30d9964234b6b3f Mon Sep 17 00:00:00 2001 From: nanowrit <59661202+nanowrit@users.noreply.github.com> Date: Fri, 14 Feb 2020 11:17:27 -0700 Subject: [PATCH] Update handle-forgot-and-reset-password.md Proposing these changes to make this chapter more congruent with the core chapters of the guide. --- _chapters/handle-forgot-and-reset-password.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/_chapters/handle-forgot-and-reset-password.md b/_chapters/handle-forgot-and-reset-password.md index f586e75ca..8d26ebf27 100644 --- a/_chapters/handle-forgot-and-reset-password.md +++ b/_chapters/handle-forgot-and-reset-password.md @@ -117,10 +117,11 @@ export default class ResetPassword extends Component { type="submit" bsSize="large" loadingText="Sending…" - text="Send Confirmation" isLoading={this.state.isSendingCode} disabled={!this.validateCodeForm()} /> + Send Confirmation + ); } @@ -162,11 +163,12 @@ export default class ResetPassword extends Component { block type="submit" bsSize="large" - text="Confirm" loadingText="Confirm…" isLoading={this.state.isConfirming} disabled={!this.validateResetForm()} /> + Confirm + ); } @@ -246,12 +248,7 @@ Finally, let's link this up with the rest of our app. Add the route to `src/Routes.js`. ``` html - + ``` And import it in the header.