From 75dc0e4acae7610a8f1fa38ef1ed55d164c7c1d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alba=20Rinc=C3=B3n?= Date: Wed, 4 May 2022 09:56:29 +0200 Subject: [PATCH] Remove unnecessary single quotes --- src/BlockTypes/FeaturedProduct.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BlockTypes/FeaturedProduct.php b/src/BlockTypes/FeaturedProduct.php index 77e103d184b..c77597a7771 100644 --- a/src/BlockTypes/FeaturedProduct.php +++ b/src/BlockTypes/FeaturedProduct.php @@ -212,7 +212,7 @@ public function get_styles( $attributes, $image_url ) { } if ( ! $attributes['isRepeated'] ) { - $style .= "background-repeat: 'no-repeat';"; + $style .= 'background-repeat: no-repeat;'; $style .= 'background-size: ' . ( 'cover' === $attributes['imageFit'] ? $attributes['imageFit'] : 'auto' ) . ';'; }