Skip to content

Commit

Permalink
Moving FlintAlerts to src/modules/datastores/components.
Browse files Browse the repository at this point in the history
- `src/modiles/flint` only had one component, which was only used in `datastores`.
  • Loading branch information
erinesullivan committed Aug 23, 2023
1 parent 3e49928 commit 73b68d7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
4 changes: 3 additions & 1 deletion src/modules/datastores/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import DatastoreNavigation from './components/DatastoreNavigation';
import Landing from './components/Landing';
import DatastoreInfo from './components/DatastoreInfo';
import DatastoreAlerts from './components/DatastoreAlerts';
import FlintAlerts from './components/FlintAlerts';
import datastoresReducer from './reducer/';

import { addDatastore, changeActiveDatastore } from './actions';
Expand All @@ -13,5 +14,6 @@ export {
changeActiveDatastore,
Landing,
DatastoreInfo,
DatastoreAlerts
DatastoreAlerts,
FlintAlerts
};
5 changes: 0 additions & 5 deletions src/modules/flint/index.js

This file was deleted.

2 changes: 1 addition & 1 deletion src/modules/pages/components/DatastorePage/container.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { AdvancedSearch } from '../../../advanced';
import {
DatastoreNavigation,
DatastoreInfo,
FlintAlerts,
Landing
} from '../../../datastores';
import { Filters } from '../../../filters';
Expand All @@ -25,7 +26,6 @@ import { InstitutionSelect, InstitutionWrapper } from '../../../institution';
import { ChooseAffiliation } from '../../../affiliation';
import { List } from '../../../lists';
import { setDocumentTitle } from '../../../a11y';
import { FlintAlerts } from '../../../flint';
import PropTypes from 'prop-types';
import { Icon } from '../../../reusable';

Expand Down

0 comments on commit 73b68d7

Please sign in to comment.