Skip to content

Commit ce8e843

Browse files
committed
Removed all the console logs from the project
1 parent 6661b82 commit ce8e843

4 files changed

Lines changed: 1 addition & 5 deletions

File tree

src/components/header/Header.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ const onMouseOut = (event) => {
1818
class Header extends Component {
1919
render() {
2020
const theme = this.props.theme;
21-
console.log(theme);
2221
const link = settings.isSplash ? "/splash" : "home";
2322
return (
2423
<Fade top duration={1000} distance="20px">

src/containers/Main.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ import { settings } from "../portfolio.js";
1111

1212
export default class Main extends Component {
1313
render() {
14-
const theme = this.props.theme;
15-
console.log(theme);
1614
if (settings.isSplash) {
1715
return (
1816
<div>

src/containers/experienceAccordion/ExperienceAccordion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class ExperienceAccordion extends Component {
88
const theme = this.props.theme;
99
return (
1010
<div className="experience-accord">
11-
<Accordion onChange={({ expanded }) => console.log(expanded)}>
11+
<Accordion>
1212
{this.props.sections.map((section) => {
1313
return (
1414
<Panel

src/pages/home/HomeComponent.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import TopButton from "../../components/topButton/TopButton";
77

88
class Home extends Component {
99
render() {
10-
console.log(this.props.theme);
1110
return (
1211
<div>
1312
<Header theme={this.props.theme} />

0 commit comments

Comments
 (0)