Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
Remove unnecessary single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
albarin committed May 4, 2022
1 parent 28e8f95 commit 75dc0e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BlockTypes/FeaturedProduct.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' ) . ';';
}

Expand Down

0 comments on commit 75dc0e4

Please sign in to comment.