Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ export { default as removeCartItem } from './cart/removeCartItem';
export { default as cart } from './cart';
export { default as fetchWithGraphQl } from './fetchWithGraphQl';
export { default as product } from './product';
export { default as routes } from './routes';
export { default as session } from './session';
export { default as signIn } from './session/signIn';
export { default as signOut } from './session/signOut';
Expand Down
1 change: 0 additions & 1 deletion src/routes.ts

This file was deleted.

3 changes: 1 addition & 2 deletions src/types/Connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import removeCartItem from '../cart/removeCartItem';
import product from '../product';
import productSlots from '../product/productSlots';
import productSuggestions from '../product/productSuggestions';
import routes from '../routes';
import session from '../session';
import signIn from '../session/signIn';
import signOut from '../session/signOut';
Expand Down Expand Up @@ -41,7 +40,7 @@ export default class Magento2Connector implements Connector {

search = search;

routes = routes;
routes = []; // @TODO: remove `routes` field from the interface

productSlots = productSlots;

Expand Down