Skip to content

Commit

Permalink
Fixed error order view on Frontend Issue #5
Browse files Browse the repository at this point in the history
Fixed error order view on Frontend Issue #5
  • Loading branch information
parththummar authored Feb 6, 2023
1 parent 09d0eeb commit c1ba62a
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 c1ba62a

Please sign in to comment.