Skip to content

Commit

Permalink
Moving DateRangeInput and Multiselect out of core and into `adv…
Browse files Browse the repository at this point in the history
…anced` since that is where they're only used.
  • Loading branch information
erinesullivan committed Nov 7, 2024
1 parent bc34606 commit 6c8ea5b
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/modules/advanced/components/FiltersContainer/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { AdvancedSearchSubmit, setAdvancedFilter } from '../../../advanced';
import { DateRangeInput, Multiselect } from '../../../core';
import { useDispatch, useSelector } from 'react-redux';
import ActiveAdvancedFilters from '../ActiveAdvancedFilters';
import AdvancedFilter from '../AdvancedFilter';
import DateRangeInput from '../DateRangeInput';
import getFilters from './getFilters';
import Multiselect from '../Multiselect';
import PropTypes from 'prop-types';
import React from 'react';

Expand Down
4 changes: 0 additions & 4 deletions src/modules/core/index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
import DateRangeInput from './components/DateRangeInput';
import Footer from './components/Footer';
import Multiselect from './components/Multiselect';
import ScrollToTop from './components/ScrollToTop';
import SearchHeader from './components/SearchHeader';
import TrimString from './components/TrimString';

export {
DateRangeInput,
Footer,
Multiselect,
ScrollToTop,
SearchHeader,
TrimString
Expand Down

0 comments on commit 6c8ea5b

Please sign in to comment.