diff --git a/packages/editor/src/components/post-featured-image/index.js b/packages/editor/src/components/post-featured-image/index.js
index ca3df956c41a4..0153277a37b77 100644
--- a/packages/editor/src/components/post-featured-image/index.js
+++ b/packages/editor/src/components/post-featured-image/index.js
@@ -22,8 +22,8 @@ const ALLOWED_MEDIA_TYPES = [ 'image' ];
// Used when labels from post type were not yet loaded or when they are not present.
const DEFAULT_FEATURE_IMAGE_LABEL = __( 'Featured Image' );
-const DEFAULT_SET_FEATURE_IMAGE_LABEL = __( 'Set featured image' );
-const DEFAULT_REMOVE_FEATURE_IMAGE_LABEL = __( 'Remove image' );
+const DEFAULT_SET_FEATURE_IMAGE_LABEL = __( 'Set Featured Image' );
+const DEFAULT_REMOVE_FEATURE_IMAGE_LABEL = __( 'Remove Image' );
function PostFeaturedImage( { currentPostId, featuredImageId, onUpdateImage, onRemoveImage, media, postType } ) {
const postLabel = get( postType, [ 'labels' ], {} );
@@ -81,7 +81,7 @@ function PostFeaturedImage( { currentPostId, featuredImageId, onUpdateImage, onR
modalClass="editor-post-featured-image__media-modal"
render={ ( { open } ) => (
) }
/>
diff --git a/packages/editor/src/components/post-trash/index.js b/packages/editor/src/components/post-trash/index.js
index 119afd59d3a0d..9c2a167faa22f 100644
--- a/packages/editor/src/components/post-trash/index.js
+++ b/packages/editor/src/components/post-trash/index.js
@@ -15,7 +15,7 @@ function PostTrash( { isNew, postId, postType, ...props } ) {
return (
);
}