Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Jun 19, 2024
1 parent 75095ad commit 718501f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/app/_shared/pipes/productname.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export class ProductNamePipe implements PipeTransform {

transform(value: string): string {
const foundProduct = this.metaService.getProductNameByProductId(value);
console.log(value, foundProduct);
if (!foundProduct) return value;

return foundProduct;
Expand Down

0 comments on commit 718501f

Please sign in to comment.