From 74945451f57574843a21ec823050b128b9e0eac5 Mon Sep 17 00:00:00 2001 From: Marcus Date: Mon, 9 Sep 2024 00:22:09 -0700 Subject: [PATCH] Fix: imports how did eslint-plugin-import not catch this. --- src/components/sections/extras/ExtraSelection.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/sections/extras/ExtraSelection.jsx b/src/components/sections/extras/ExtraSelection.jsx index 9e6e02e35..907058c77 100644 --- a/src/components/sections/extras/ExtraSelection.jsx +++ b/src/components/sections/extras/ExtraSelection.jsx @@ -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;