diff --git src/wp-admin/js/customize-controls.js src/wp-admin/js/customize-controls.js
index 5987bf4ed7..f6d7359fc4 100644
|
|
|
4122 | 4122 | |
4123 | 4123 | // Remove notification errors that are no longer valid. |
4124 | 4124 | setting.notifications.each( function( notification ) { |
4125 | | if ( 'error' === notification.type && ( true === validity || ! validity[ notification.code ] ) ) { |
| 4125 | if ( notification.fromServer && 'error' === notification.type && ( true === validity || ! validity[ notification.code ] ) ) { |
4126 | 4126 | setting.notifications.remove( notification.code ); |
4127 | 4127 | } |
4128 | 4128 | } ); |