Skip to content

Commit

Permalink
Refactor: remove context limitations
Browse files Browse the repository at this point in the history
  • Loading branch information
yogeshbhutkar committed Jan 13, 2025
1 parent d7faa4a commit a9fcb8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/block-library/src/navigation/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ export const settings = {
},
edit,
save,
__experimentalLabel: ( { ref }, { context } ) => {
if ( ! ref || context !== 'list-view' ) {
__experimentalLabel: ( { ref } ) => {
if ( ! ref ) {
return;
}

Expand Down

0 comments on commit a9fcb8b

Please sign in to comment.