Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions packages/editor/src/components/header/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ import MoreMenu from '../more-menu';
import PostPreviewButton from '../post-preview-button';
import PostPublishButtonOrToggle from '../post-publish-button/post-publish-button-or-toggle';
import PostSavedState from '../post-saved-state';
import PostTypeSupportCheck from '../post-type-support-check';
import PostViewLink from '../post-view-link';
import PreviewDropdown from '../preview-dropdown';
import { store as editorStore } from '../../store';
Expand Down Expand Up @@ -117,13 +116,7 @@ function Header( {
! isBlockToolsCollapsed && hasTopToolbar,
} ) }
>
{ ! title ? (
<PostTypeSupportCheck supportKeys="title">
<DocumentBar />
</PostTypeSupportCheck>
) : (
title
) }
{ ! title ? <DocumentBar /> : title }
</div>
</motion.div>
<motion.div
Expand Down