Skip to content
Merged
Prev Previous commit
Next Next commit
Remove experimental from reducer
  • Loading branch information
glendaviesnz committed Nov 1, 2022
commit 967e306303d86cbd92acca31ca19dcd032080b2a
4 changes: 2 additions & 2 deletions packages/block-editor/src/store/reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@ export const blocks = pipe(
*
* @return {boolean} Updated state.
*/
export function __experimentalIsBlockInterfaceHidden( state = false, action ) {
export function isBlockInterfaceHidden( state = false, action ) {
switch ( action.type ) {
case 'HIDE_BLOCK_INTERFACE':
return true;
Expand Down Expand Up @@ -1829,7 +1829,7 @@ export function temporarilyEditingAsBlocks( state = '', action ) {
export default combineReducers( {
blocks,
isTyping,
__experimentalIsBlockInterfaceHidden,
isBlockInterfaceHidden,
draggedBlocks,
selection,
isMultiSelecting,
Expand Down