Remove extra global-styles-inline-css

PHOTO EMBED

Wed Mar 02 2022 19:34:32 GMT+0000 (Coordinated Universal Time)

Saved by @shawna

function remove_global_css() {
    // Paste the code here
	remove_action( 'wp_enqueue_scripts', 'wp_enqueue_global_styles' );
	remove_action( 'wp_body_open', 'wp_global_styles_render_svg_filters' );
}
add_action('init', 'remove_global_css');
content_copyCOPY

https://github.com/WordPress/gutenberg/issues/36834#issuecomment-1048188886