File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change 1
1
import React , { useMemo } from 'react' ;
2
2
import { useIntl } from '@edx/frontend-platform/i18n' ;
3
3
import { orderBy } from 'lodash' ;
4
- import { CardGrid } from '@openedx/paragon' ;
5
4
6
5
import { SearchContextProvider , useSearchContext } from '../search-manager' ;
7
6
import { type CollectionHit , type ContentHit , SearchSortOption } from '../search-manager/data/api' ;
@@ -48,15 +47,7 @@ const RecentlyModified: React.FC<{ libraryId: string }> = ({ libraryId }) => {
48
47
title = { intl . formatMessage ( messages . recentlyModifiedTitle ) }
49
48
contentCount = { componentCount }
50
49
>
51
- < CardGrid
52
- columnSizes = { {
53
- sm : 12 ,
54
- md : 6 ,
55
- lg : 4 ,
56
- xl : 3 ,
57
- } }
58
- hasEqualColumnHeights
59
- >
50
+ < div className = "library-cards-grid" >
60
51
{ recentItems . map ( ( contentHit ) => (
61
52
contentHit . type === 'collection' ? (
62
53
< CollectionCard
@@ -71,7 +62,7 @@ const RecentlyModified: React.FC<{ libraryId: string }> = ({ libraryId }) => {
71
62
/>
72
63
)
73
64
) ) }
74
- </ CardGrid >
65
+ </ div >
75
66
</ LibrarySection >
76
67
)
77
68
: null ;
You can’t perform that action at this time.
0 commit comments