Skip to content

Commit b61db4e

Browse files
Remove console logs from Reviews component
1 parent 7e65d73 commit b61db4e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/components/Reviews/Reviews.jsx

-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ import api from "services/api";
55
import css from "./Reviews.module.css";
66

77
const FUNCTIONALITY_SHOW_LESS = process.env.REACT_APP_FUNC_SHOW_LESS.toLowerCase() === "true";
8-
console.log('process.env.REACT_APP_FUNC_SHOW_LESS :>> ', process.env.REACT_APP_FUNC_SHOW_LESS);
9-
console.log('typeof FUNCTIONALITY_SHOW_LESS:>> ', typeof FUNCTIONALITY_SHOW_LESS);
10-
console.log('FUNCTIONALITY_SHOW_LESS :>> ', FUNCTIONALITY_SHOW_LESS);
118

129
const MESSAGE_NO_REVIEWS = "We have no reviews for this movie.";
1310
const MESSAGE_NO_MORE_REVIEWS = "We have no more reviews for this movie.";
@@ -78,7 +75,6 @@ const Reviews = () => {
7875

7976
return (
8077
<>
81-
{console.log("rendering reviews")}
8278
<ul
8379
id="reviewsList"
8480
className={`${css.list} ${FUNCTIONALITY_SHOW_LESS ? "func-show-less" : ""}`}

0 commit comments

Comments
 (0)