diff --git a/src/wp-admin/js/customize-controls.js b/src/wp-admin/js/customize-controls.js index 97ab2bdad2..e8f19dd7c7 100644 --- a/src/wp-admin/js/customize-controls.js +++ b/src/wp-admin/js/customize-controls.js @@ -4123,7 +4123,7 @@ // Remove notification errors that are no longer valid. setting.notifications.each( function( notification ) { - if ( 'error' === notification.type && ( true === validity || ! validity[ notification.code ] ) ) { + if ( notification.fromServer && 'error' === notification.type && ( true === validity || ! validity[ notification.code ] ) ) { setting.notifications.remove( notification.code ); } } );