Skip to content

Commit

Permalink
Fix: imports
Browse files Browse the repository at this point in the history
how did eslint-plugin-import not catch this.
  • Loading branch information
marcustyphoon committed Sep 9, 2024
1 parent fc6546b commit 7494545
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/sections/extras/ExtraSelection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ import {
import { chunkArray } from '../../../utils/usefulFunctions';
import AmountInput from '../../baseComponents/AmountInput';
import Label from '../../baseComponents/Label';
import ModalContent, { formatApiText, joinWith } from './helpers';
import ModalContent from './ModalContent';
import { formatApiText, joinWith } from './helpers';

// const roundPrice = (num) => Math.round(num / 100) * 100;
const roundPrice = (num) => Math.round(num / 10) * 10;
Expand Down

0 comments on commit 7494545

Please sign in to comment.