Skip to content

Commit

Permalink
Fix customize button text
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwatkins0 committed Jul 3, 2020
1 parent a1087df commit 4b3b0da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/src/setup/pages/save/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export function Save() {
target="_blank"
rel="noreferrer"
>
{ __( 'Visit', 'amp' ) }
{ __( 'Customize', 'amp' ) }
</Button>
<Button
isPrimary
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/specs/amp-onboarding/done.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ describe( 'Done', () => {
await expect( page ).toMatchElement( '.phone iframe' );
await expect( page ).toMatchElement( 'p', { text: /reader mode/i } );
await expect( page ).toMatchElement( 'a', { text: 'Browse' } );
await expect( page ).toMatchElement( 'a', { text: 'Visit' } );
await expect( page ).toMatchElement( 'a', { text: 'Customize' } );
} );
} );

0 comments on commit 4b3b0da

Please sign in to comment.