Skip to content

Commit 8ea66ac

Browse files
committed
Limit amount of elements in landing page
1 parent 117576e commit 8ea66ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/web-user/src/webapp/rt/page/my-landing-page/MyLandingPageProfileListHook.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function useMyLandingPageProfileListDataProps() {
1414
{
1515
entityType: 'profiles',
1616
},
17-
{ limit: 12 },
17+
{ limit: 10 },
1818
).then(setProfiles)
1919
}, [])
2020
const profilesPropsList = useMemo<LandingProfileListProps['profilesPropsList']>(

packages/web-user/src/webapp/rt/page/my-landing-page/MyLandingPageResourceListHook.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function useMyLandingPageResourceListDataProps() {
1414
{
1515
entityType: 'resources',
1616
},
17-
{ limit: 12 },
17+
{ limit: 8 },
1818
).then(setResources)
1919
}, [])
2020
const resourceCardPropsList = useMemo<LandingResourceListProps['resourceCardPropsList']>(

0 commit comments

Comments
 (0)