Skip to content

Commit e683d78

Browse files
committed
remove console.log
1 parent 9ec5bfa commit e683d78

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/components/common/Image/Image.js

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ function Image({
2020
// because the `src` prop is not being attached at all to the <img> tag (I guess JSX omits falsy props for the `src` prop).
2121
// That's the reason why we set `failed` value initially, based on the `src` value.
2222
const [failed, setFailed] = useState(isFailed(src))
23-
console.log({src})
2423
useEffect(() => {
2524
setFailed(isFailed(src))
2625
}, [src])

0 commit comments

Comments
 (0)