Skip to content
This repository has been archived by the owner on Nov 6, 2022. It is now read-only.

Commit

Permalink
Fix JS linting errors by using ellipses
Browse files Browse the repository at this point in the history
  • Loading branch information
kienstra committed Aug 29, 2020
1 parent 83653d4 commit d9c20fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/migration/components/steps/install-activate-gcb.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const InstallActivateGcb = ( { goToNext, isStepActive, isStepComplete, stepIndex
{ isInProgress && (
<>
<Spinner />
<p>{ __( 'Installing and activating Genesis Custom Blocks...', 'block-lab' ) }</p>
<p>{ __( 'Installing and activating Genesis Custom Blocks', 'block-lab' ) }</p>
</>
) }
{ !! errorMessage && (
Expand Down
4 changes: 2 additions & 2 deletions js/migration/components/steps/migrate-blocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ const MigrateBlocks = ( { isStepActive, isStepComplete, stepIndex } ) => {
const [ isSuccess, setIsSuccess ] = useState( false );

const migrationLabels = [
__( 'Migrating your blocks...', 'block-lab' ),
__( 'Migrating your post content...', 'block-lab' ),
__( 'Migrating your blocks', 'block-lab' ),
__( 'Migrating your post content', 'block-lab' ),
];

/**
Expand Down

0 comments on commit d9c20fe

Please sign in to comment.