Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit 26623ec

Browse files
committed
update ProductTable.tsx - update indent
1 parent 2adaec7 commit 26623ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ProductTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function ProductTable({ products, filterText }: { products: Array<Products>, fil
88
products.forEach((product: Products, i: number) => {
99
if (filterText === ' ' ||
1010
product.title.indexOf(filterText) === -1) {
11-
return;
11+
return;
1212
}
1313
filterProducts.push(
1414
<ProductValue

0 commit comments

Comments
 (0)