Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CORE-346 Remove gigs from home page #6972

Merged
merged 2 commits into from
Mar 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions src/shared/containers/Dashboard/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import { config } from 'topcoder-react-utils';
import Viewport from 'components/Contentful/Viewport';
import TopcoderTime from 'components/Dashboard/TCTime';
import ThriveArticlesFeedContainer from 'containers/Dashboard/ThriveArticlesFeed';
import GigsFeed from 'containers/Dashboard/GigsFeed';
// deprecated with https://topcoder.atlassian.net/browse/CORE-346
// import GigsFeed from 'containers/Dashboard/GigsFeed';
import ChallengesFeed from 'containers/Dashboard/ChallengesFeed';
import BlogFeedContainer from 'containers/Dashboard/BlogFeed';
import MetaTags from 'components/MetaTags';
Expand Down Expand Up @@ -63,7 +64,8 @@ function SlashTCContainer(props) {
itemCount={20}
/>
<ChallengesFeed theme="dark" excludeTags={[INNOVATION_CHALLENGES_TAG]} />
<GigsFeed itemCount={5} theme="dark" />
{/* deprected with https://topcoder.atlassian.net/browse/CORE-346 */}
{/* <GigsFeed itemCount={5} theme="dark" /> */}
<NewsFeed />
<Viewport id="SSwOFPT8l0WpGhqCBRISG" />
<ThriveArticlesFeedContainer itemCount={4} theme="dark" />
Expand Down Expand Up @@ -92,7 +94,8 @@ function SlashTCContainer(props) {
itemCount={20}
/>
<ChallengesFeed theme="dark" excludeTags={[INNOVATION_CHALLENGES_TAG]} />
<GigsFeed itemCount={5} theme="dark" />
{/* deprected with https://topcoder.atlassian.net/browse/CORE-346 */}
{/* <GigsFeed itemCount={5} theme="dark" /> */}
<NewsFeed />
</div>
{/* Right column */}
Expand Down
Loading