Skip to content

Commit

Permalink
Remove app and social on homepage.
Browse files Browse the repository at this point in the history
  • Loading branch information
chmac committed Jan 26, 2024
1 parent 3e1c12b commit 4bfcf05
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/pages/client/components/Home.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import screenshotSearchPng from '../img/screenshot-search.png';
import screenshotSearchPng2x from '../img/screenshot-search-2x.png';
import screenshotSearchWebp from '../img/screenshot-search.webp';
import screenshotSearchWebp2x from '../img/screenshot-search-2x.webp';
import Tooltip from '@/modules/core/client/components/Tooltip.js';

/**
* List of photos to randomly pick as cover photo for homepage
Expand Down Expand Up @@ -79,7 +78,7 @@ export function getSignupUrl(circleSlug) {
return '/signup';
}

export default function Home({ user, isNativeMobileApp, photoCredits }) {
export default function Home({ user, photoCredits }) {
const { t } = useTranslation('pages');
// `tribe` route supported for legacy reasons, deprecated Feb 2021
const { circle: circleRouteParam, tribe: tribeRouteParam } = getRouteParams();
Expand Down Expand Up @@ -428,6 +427,7 @@ export default function Home({ user, isNativeMobileApp, photoCredits }) {

<div className="row text-center">
<hr className="hr-white hr-xs" />
{/*
{!isNativeMobileApp && (
<div className="home-apps">
<a
Expand Down Expand Up @@ -490,6 +490,7 @@ export default function Home({ user, isNativeMobileApp, photoCredits }) {
</Tooltip>
</li>
</ul>
*/}

<BoardCredits photoCredits={photoCredits} />
</div>
Expand Down

0 comments on commit 4bfcf05

Please sign in to comment.