Skip to content

Commit

Permalink
Add full stop to action success notices
Browse files Browse the repository at this point in the history
  • Loading branch information
mikachan committed Dec 12, 2024
1 parent f60fa36 commit 35cea15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const SetAsHomepageModal = ( { items, closeModal } ) => {
show_on_front: 'page',
} );

createSuccessNotice( __( 'Homepage updated' ), {
createSuccessNotice( __( 'Homepage updated.' ), {
type: 'snackbar',
} );
} catch ( error ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const SetAsPostsPageModal = ( { items, closeModal } ) => {
show_on_front: 'page',
} );

createSuccessNotice( __( 'Post page updated' ), {
createSuccessNotice( __( 'Posts page updated.' ), {
type: 'snackbar',
} );
} catch ( error ) {
Expand Down

0 comments on commit 35cea15

Please sign in to comment.