Debugging Starter pattern Not appearing during Page Creation

If you are developing a WordPress theme and have it active, newly added Starter patterns may not appear on page creation.

If you are facing this, the simplest solution is to ensure you have set development mode in wp-config.php. Here is the code you can add and the newly added patterns will start appearing

define( 'WP_ENVIRONMENT_TYPE', 'development' );
define( 'WP_DEVELOPMENT_MODE', 'theme' );

Note:– Do not do it on production sites, this is for convenience while developing the theme.