Skip to content

Commit

Permalink
eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Oksydan committed Oct 22, 2023
1 parent b5bc16e commit 8c5d2a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _dev/js/product/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ProductGallery from './components/ProductGallery';
import DOMReady from "../theme/utils/DOMReady";
import DOMReady from '../theme/utils/DOMReady';

DOMReady(() => {
const gallery = new ProductGallery();
Expand Down
3 changes: 1 addition & 2 deletions _dev/js/theme/components/event/useEvent.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import $ from 'jquery';
import EventHandler from "bootstrap/js/src/dom/event-handler";
import EventHandler from 'bootstrap/js/src/dom/event-handler';

/**
* Function that will help you to add/remove/trigger events
Expand Down
2 changes: 1 addition & 1 deletion _dev/js/theme/components/product.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import prestashop from 'prestashop';
import useCustomQuantityInput from './useCustomQuantityInput';
import { each } from '../utils/DOMHelpers';
import parseToHtml from "../utils/parseToHtml";
import parseToHtml from '../utils/parseToHtml';
import DOMReady from '../utils/DOMReady';
import productEventContextSelector from '../core/product/utils/productEventContextSelector';

Expand Down

0 comments on commit 8c5d2a3

Please sign in to comment.