Skip to content

Commit

Permalink
Merge pull request #449 from comicrelief/448_fix_lookup_button_bug
Browse files Browse the repository at this point in the history
fix: address lookup bug
  • Loading branch information
AndyEPhipps authored Mar 29, 2021
2 parents 1db3cfd + 1ba34c8 commit d0403e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/PostcodeLookup/PostcodeLookup.js
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ class PostcodeLookup extends Component {
}
{this.state.isAddressButtonHidden === false &&
<div className="form__field--wrapper">
<a href="/" role="button" className="link" onClick={e => this.showAddressFields(e)} aria-describedby="field-error--addressDetails">Or enter your address manually</a>
<a href="#" role="button" className="link" onClick={e => this.showAddressFields(e)} aria-describedby="field-error--addressDetails">Or enter your address manually</a>
</div>
}
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ exports[`Stories Storyshots Postcode Lookup PostcodeLookup 1`] = `
<a
aria-describedby="field-error--addressDetails"
className="link"
href="/"
href="#"
onClick={[Function]}
role="button"
>
Expand Down

0 comments on commit d0403e1

Please sign in to comment.