Skip to content

Commit

Permalink
Fix contributor cart props. (#5453)
Browse files Browse the repository at this point in the history
Co-authored-by: Valentin Yanakiev <[email protected]>
  • Loading branch information
alstojanovic and valentinyanakiev authored Jan 30, 2024
1 parent 610be53 commit 100421c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ const JourneyDashboardWelcomeBlock = ({
city: org.profile.location?.city,
});
}}
seamless
/>
))}
</Gutters>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const SpaceDashboardPage: FC<SpaceDashboardPageProps> = ({ dialog }) => {
entityReadAccess={entities.permissions.spaceReadAccess}
readUsersAccess={entities.permissions.readUsers}
leadUsers={entities.space?.community?.leadUsers}
leadOrganizations={entities.space?.community?.leadOrganizations}
leadOrganizations={entities.hostOrganizations}
activities={entities.activities}
fetchMoreActivities={entities.fetchMoreActivities}
activityLoading={entities.activityLoading}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const SpaceProfileFixedInformation = ({ visibility, host }: SpaceProfileFixedInf
</Gutters>
<Gutters disablePadding>
<BlockTitle>{t('pages.community.space-host.title')}</BlockTitle>
{host && <ContributorCardHorizontal {...host} />}
{host && <ContributorCardHorizontal {...host} seamless />}
</Gutters>
<Caption fontStyle="italic">{t('components.editSpaceForm.readOnly')}</Caption>
</PageContentBlock>
Expand Down

0 comments on commit 100421c

Please sign in to comment.