Skip to content

Commit d24e947

Browse files
Merge branch 'develop' into navi-params
2 parents 5fceffd + b4b90f1 commit d24e947

File tree

6 files changed

+38
-103
lines changed

6 files changed

+38
-103
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ workflows:
364364
filters:
365365
branches:
366366
only:
367-
- navi-params
367+
- free
368368
# This is stage env for production QA releases
369369
- "build-prod-staging":
370370
context : org-global

__tests__/shared/components/Error404.jsx

Lines changed: 0 additions & 27 deletions
This file was deleted.

__tests__/shared/components/__snapshots__/Error404.jsx.snap

Lines changed: 0 additions & 35 deletions
This file was deleted.

src/shared/components/Error404/index.jsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import _ from 'lodash';
66
import React from 'react';
77
import { Route } from 'react-router-dom';
8+
import Viewport from 'components/Contentful/Viewport';
89
import './style.scss';
910

1011
export default function Page404() {
@@ -16,12 +17,9 @@ export default function Page404() {
1617
return null;
1718
}}
1819
/>
19-
<h1 styleName="message">
20-
404 HTTP Error
21-
</h1>
22-
<p styleName="details">
23-
The resource you are looking for does not exist in Topcoder community App :(
24-
</p>
20+
<Viewport
21+
id="3fB4UivAs6Nn5WbhREuqrn"
22+
/>
2523
</div>
2624
);
2725
}

src/shared/components/Error404/style.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
flex-direction: column;
88
min-height: 400px;
99
text-align: center;
10-
padding: 150px 0;
1110
}
1211

1312
.details {

src/shared/components/challenge-detail/Specification/index.jsx

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -174,45 +174,13 @@ export default function ChallengeDetailsView(props) {
174174
<div styleName="challenge-specifications">
175175
<div styleName={`challenge-specs-main ${accentedStyle}`}>
176176
{
177-
track.toLowerCase() !== 'design' || selfService
177+
track.toLowerCase() !== 'design'
178178
? (
179179
<div>
180180
{
181181
description
182182
&& (
183183
<article>
184-
{
185-
selfService && (
186-
<p styleName="note">
187-
<strong>
188-
On Demand Challenges are customer-initiated single round design challenges.
189-
</strong>
190-
<br />
191-
Please note the following important information for Topcoder competitors who participate in this challenge:
192-
<ul>
193-
<li>Any communication needed, should be done directly with the customer in the Challenge Forum.</li>
194-
<li>In order to pass challenge screening and review, all challenge requirements and requested screens must be completed as described below.</li>
195-
<li>Submission source files must be created with the application(s) listed in the requirements.</li>
196-
<li>There will be no appeals or final fixes.</li>
197-
<li>The challenge winner selections will be based upon completed requirements and associated Topcoder review scoring.</li>
198-
</ul>
199-
<br />
200-
<strong>
201-
REQUEST MARVEL PROTOTYPES HERE:
202-
</strong>
203-
<br />
204-
<a href="https://discussions.topcoder.com/15528/request-marvel-access-for-design-challenges?new=1">
205-
Request Marvel for On Demand Challenges
206-
</a>
207-
<br />
208-
<strong>
209-
DO NOT request Marvel access in the challenge forum with the customer.
210-
</strong>
211-
<br />
212-
Figma or XD Prototypes are acceptable for submissions created with those applications.
213-
</p>
214-
)
215-
}
216184
<h2>
217185
Challenge Overview
218186
</h2>
@@ -255,6 +223,38 @@ export default function ChallengeDetailsView(props) {
255223
description
256224
&& (
257225
<article>
226+
{
227+
selfService && (
228+
<p styleName="note">
229+
<strong>
230+
On Demand Challenges are customer-initiated single round design challenges.
231+
</strong>
232+
<br />
233+
Please note the following important information for Topcoder competitors who participate in this challenge:
234+
<ul>
235+
<li>Any communication needed, should be done directly with the customer in the Challenge Forum.</li>
236+
<li>In order to pass challenge screening and review, all challenge requirements and requested screens must be completed as described below.</li>
237+
<li>Submission source files must be created with the application(s) listed in the requirements.</li>
238+
<li>There will be no appeals or final fixes.</li>
239+
<li>The challenge winner selections will be based upon completed requirements and associated Topcoder review scoring.</li>
240+
</ul>
241+
<br />
242+
<strong>
243+
REQUEST MARVEL PROTOTYPES HERE:
244+
</strong>
245+
<br />
246+
<a href="https://discussions.topcoder.com/15528/request-marvel-access-for-design-challenges?new=1">
247+
Request Marvel for On Demand Challenges
248+
</a>
249+
<br />
250+
<strong>
251+
DO NOT request Marvel access in the challenge forum with the customer.
252+
</strong>
253+
<br />
254+
Figma or XD Prototypes are acceptable for submissions created with those applications.
255+
</p>
256+
)
257+
}
258258
<h2>
259259
Challenge Summary
260260
</h2>

0 commit comments

Comments
 (0)