Skip to content

Commit

Permalink
refactor(ui): Remove "views" folder
Browse files Browse the repository at this point in the history
  • Loading branch information
annelhote committed Nov 17, 2023
1 parent 3225b3c commit 4b78b42
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import PropTypes from 'prop-types';
import { Column } from 'primereact/column';
import { DataTable } from 'primereact/datatable';

import { nameTemplate, statusTemplate } from '../../utils/templates';
import { nameTemplate, statusTemplate } from '../utils/templates';

export default function AffiliationsView({
allAffiliations,
Expand Down
4 changes: 2 additions & 2 deletions client/src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import { useEffect, useState } from 'react';

import Actions from './actions';
import Filters from './filters';
import AffiliationsView from './views/affiliations';
import WorksView from './views/works';
import AffiliationsView from './affiliationsView';
import WorksView from './worksView';
import Gauge from '../components/gauge';
import { PageSpinner } from '../components/spinner';
import {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
allIdsTemplate,
authorsTemplate,
statusTemplate,
} from '../../utils/templates';
} from '../utils/templates';

export default function WorksView({
selectedWorks,
Expand Down

0 comments on commit 4b78b42

Please sign in to comment.