Skip to content

Commit

Permalink
Merge pull request #7 from parththummar/patch-2
Browse files Browse the repository at this point in the history
Fixed error order view on Frontend Issue #5
  • Loading branch information
IvanChepurnyi authored Feb 6, 2023
2 parents 09d0eeb + c1ba62a commit cc2b0de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataService/MagentoProductWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function __construct(Product $product)
*/
public function getSku(): string
{
return $this->product->getData('sku');
return (string)$this->product->getData('sku');
}


Expand Down

0 comments on commit cc2b0de

Please sign in to comment.