Skip to content

Commit

Permalink
Reorganized directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
SanjeevLakhwani committed Nov 21, 2024
1 parent fea86ba commit ca679b1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/js/components/Overview/PublicOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { useAppSelector } from '@/hooks';
import { useSelectedProject, useSelectedScope } from '@/features/metadata/hooks';
import { useTranslation } from 'react-i18next';
import { RequestStatus } from '@/types/requests';
import Catalogue from '@/components/Provenance/Catalogue';
import Catalogue from '@/components/Provenance/Catalogue/Catalogue';

const ABOUT_CARD_STYLE = { width: '100%', maxWidth: '1390px', borderRadius: '11pX', ...BOX_SHADOW };
const MANAGE_CHARTS_BUTTON_STYLE = { right: '5em', bottom: '1.5em', transform: 'scale(125%)' };
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { Space } from 'antd';
import CatalogueCard from '@/components/Provenance/CatalogueCard';
import CatalogueCard from '@/components/Provenance/Catalogue/CatalogueCard';
import { useMetadata } from '@/features/metadata/hooks';

const Catalogue = () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { Card, Carousel, Descriptions, Flex, Space, Tag, Typography } from 'antd';
import CatalogueCarouselDataset from '@/components/Provenance/CatalogueCarouselDataset';
import CatalogueCarouselDataset from '@/components/Provenance/Catalogue/CatalogueCarouselDataset';
import type { Project } from '@/types/metadata';
import { ISODateToString } from '@/utils/strings';

Expand Down

0 comments on commit ca679b1

Please sign in to comment.