Skip to content

Commit f5e0e08

Browse files
committed
Fix Undefined StyleName
1 parent e318958 commit f5e0e08

File tree

1 file changed

+14
-14
lines changed
  • src/shared/components/challenge-detail/Specification

1 file changed

+14
-14
lines changed

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export default function ChallengeDetailsView(props) {
170170
description
171171
&& (
172172
<article>
173-
<h2 styleName="h2">
173+
<h2>
174174
Challenge Overview
175175
</h2>
176176
{
@@ -195,7 +195,7 @@ export default function ChallengeDetailsView(props) {
195195
finalSubmissionGuidelines
196196
&& (
197197
<article>
198-
<h2 styleName="h2">
198+
<h2>
199199
Final Submission Guidelines
200200
</h2>
201201
{
@@ -228,7 +228,7 @@ export default function ChallengeDetailsView(props) {
228228
description
229229
&& (
230230
<article>
231-
<h2 styleName="h2">
231+
<h2>
232232
Challenge Summary
233233
</h2>
234234
{
@@ -246,8 +246,8 @@ export default function ChallengeDetailsView(props) {
246246
/>
247247
)
248248
}
249-
<p styleName="p" />
250-
<p styleName="p note">
249+
<p />
250+
<p styleName="note">
251251
Please read the challenge specification carefully and
252252
watch the forums for any questions or feedback
253253
concerning this challenge. It is important that you
@@ -259,10 +259,10 @@ export default function ChallengeDetailsView(props) {
259259
)
260260
}
261261
<article>
262-
<h2 styleName="h2">
262+
<h2>
263263
Stock Photography
264264
</h2>
265-
<p styleName="p">
265+
<p>
266266
{stockArtText}
267267
&nbsp;
268268
<a href={config.URL.INFO.STOCK_ART_POLICY}>
@@ -271,10 +271,10 @@ export default function ChallengeDetailsView(props) {
271271
</p>
272272
</article>
273273
<article>
274-
<h2 styleName="h2">
274+
<h2>
275275
How To Submit
276276
</h2>
277-
<ul styleName="ul">
277+
<ul>
278278
<li>
279279
New to Studio?
280280
&zwnj;
@@ -311,10 +311,10 @@ export default function ChallengeDetailsView(props) {
311311
</article>
312312

313313
<article>
314-
<h2 styleName="h2">
314+
<h2>
315315
Winner Selection
316316
</h2>
317-
<p styleName="p">
317+
<p>
318318
Submissions are viewable to the client as they are entered
319319
into the challenge. Winners are selected by the client and
320320
are chosen solely at the client&apos;s discretion.
@@ -324,13 +324,13 @@ export default function ChallengeDetailsView(props) {
324324
)
325325
}
326326
<article>
327-
<h2 styleName="h2">
327+
<h2>
328328
Payments
329329
</h2>
330330
{
331331
isWipro ? (
332332
<div>
333-
<p styleName="p">
333+
<p>
334334
For employees of Wipro Technologies, following are the
335335
payment terms. Winner/s would be awarded the prize money on
336336
successful completion and acceptance of the submission by
@@ -354,7 +354,7 @@ export default function ChallengeDetailsView(props) {
354354
</p>
355355
</div>
356356
) : (
357-
<p styleName="p">
357+
<p>
358358
Topcoder will compensate members in accordance with our standard payment policies, unless
359359
otherwise specified in this challenge. For information on payment policies, setting up your profile to
360360
receive payments, and general payment questions, please refer to

0 commit comments

Comments
 (0)