Skip to content

Commit

Permalink
rename file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjithkumar017 committed May 30, 2020
1 parent e3adff8 commit bba7480
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ class App extends Component {
}

unbxdCallBack = (unbxdSearchObj, eventName) => {
console.log("hello ", eventName)
if (eventName === 'AFTER_API_CALL') {
this.setState({ unbxdCore: unbxdSearchObj })
}
Expand Down
2 changes: 1 addition & 1 deletion src/modules/Products/ProductsView.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';

import { ProductContextConsumer } from './Context'
import { ProductContextConsumer } from './context'

import NoProducts from './NoProducts';
import ProductsWrapper from './ProductsWrapper';
Expand Down
2 changes: 1 addition & 1 deletion src/modules/Products/ViewTypes.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';

import { ProductContextConsumer } from './Context'
import { ProductContextConsumer } from './context'

const ViewTypes = () => {
return (<ProductContextConsumer>{({ isGrid, onViewToggle }) => {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/Products/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import AppContext, { AppContextConsumer } from '../../common/context'
import { ProductContextProvider } from './Context'
import { ProductContextProvider } from './context'

import PropTypes from 'prop-types';

Expand Down

0 comments on commit bba7480

Please sign in to comment.