diff --git a/apps/wpcom-block-editor/README.md b/apps/wpcom-block-editor/README.md index 3b502ea9583510..95280f41f02f25 100644 --- a/apps/wpcom-block-editor/README.md +++ b/apps/wpcom-block-editor/README.md @@ -18,7 +18,6 @@ There are two environments the block editor integration supports: ### Common utilities -- `disable-nux-tour.js`: Disable the pop-up tooltip tour that is displayed on first use. - `rich-text.js`: Extensions for the Rich Text toolbar with the Calypso buttons missing on Core (i.e. underline, justify). - `switch-to-classic.js`: Append a button to the "More tools" menu for switching to the classic editor. - `tracking`: Adds analytics around specific user actions for Simple, Jetpack and Atomic sites. diff --git a/apps/wpcom-block-editor/src/common/disable-nux-tour.js b/apps/wpcom-block-editor/src/common/disable-nux-tour.js deleted file mode 100644 index f8c2fb20dacb2e..00000000000000 --- a/apps/wpcom-block-editor/src/common/disable-nux-tour.js +++ /dev/null @@ -1,7 +0,0 @@ -/** - * External dependencies - */ -import { dispatch } from '@wordpress/data'; -import '@wordpress/nux'; //ensure nux store loads - -dispatch( 'core/nux' ).disableTips(); diff --git a/apps/wpcom-block-editor/src/common/index.js b/apps/wpcom-block-editor/src/common/index.js index 676e3bb6b07aaa..f835e30e54db20 100644 --- a/apps/wpcom-block-editor/src/common/index.js +++ b/apps/wpcom-block-editor/src/common/index.js @@ -1,7 +1,6 @@ /** * Internal dependencies */ -import './disable-nux-tour'; import './reorder-block-categories'; import './rich-text'; import './style.scss';