The following PHP snippet lets you modify the image size ratio for the featured image for the Product Reviews extension. It needs to be integrated into the functions.php file of the Blocksy child theme, or via the Code Snippets plugin. Adjust the 1/1 ratio to whatever you wish.
add_filter('blocksy:ext:product-reviews:gallery:ratio', function ($ratio) {
return '1/1';
});