From 2f17492fee0f4a5c1c63a4c1de8b9a543a24e167 Mon Sep 17 00:00:00 2001 From: ramon Date: Wed, 31 Jul 2024 15:50:30 +1000 Subject: [PATCH] Remove trailing comma --- lib/class-wp-theme-json-gutenberg.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/class-wp-theme-json-gutenberg.php b/lib/class-wp-theme-json-gutenberg.php index f7bd80c7d8341..a2cebbe247e59 100644 --- a/lib/class-wp-theme-json-gutenberg.php +++ b/lib/class-wp-theme-json-gutenberg.php @@ -2365,7 +2365,7 @@ protected static function compute_style_properties( $styles, $settings = array() // Processes background image styles. if ( 'background-image' === $css_property && ! empty( $value ) ) { $background_styles = gutenberg_style_engine_get_styles( - array( 'background' => array( 'backgroundImage' => $value ) ), + array( 'background' => array( 'backgroundImage' => $value ) ) ); $value = $background_styles['declarations'][ $css_property ];