Skip to content

Commit bcc4247

Browse files
authored
Merge pull request #422 from topcoder-platform/PROD-2081_conf-msg
PROD-2081 add confirmation message to work intakes -> qa
2 parents 7f40cd1 + f0561cb commit bcc4247

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

src/routes/ThankYou/index.jsx

+17-7
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ import Button from "components/Button";
33
import LoadingSpinner from "components/LoadingSpinner";
44
import Page from "components/Page";
55
import PageContent from "components/PageContent";
6-
import PageDivider from "components/PageDivider";
76
import PageH2 from "components/PageElements/PageH2";
8-
import { BUTTON_SIZE, MAX_COMPLETED_STEP, webWorkTypes } from "constants/";
7+
import { BUTTON_SIZE, MAX_COMPLETED_STEP } from "constants/";
98
import React, { useEffect, useState } from "react";
109
import { useDispatch, connect } from "react-redux";
1110
import "./styles.module.scss";
@@ -41,11 +40,22 @@ const ThankYou = () => {
4140
<div styleName="container">
4241
<div styleName="content">
4342
<PageH2>THANK YOU</PageH2>
44-
<p>
45-
Your payment has been processed successfully. You will now be
46-
taken to your work Dashboard where you can manage the work
47-
you’ve submitted.
48-
</p>
43+
44+
<div styleName='content-container'>
45+
46+
<p>
47+
Your payment has been processed successfully.
48+
</p>
49+
50+
<p>
51+
You can now go to the Dashboard to manage the work you've submitted.
52+
</p>
53+
54+
<p>
55+
If your changes do not appear immediately, please reload the page.
56+
</p>
57+
58+
</div>
4959

5060
<div styleName="btn">
5161
<Button size={BUTTON_SIZE.MEDIUM} onClick={onDone}>

src/routes/ThankYou/styles.module.scss

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,16 @@
66
text-align: center;
77

88
.content {
9-
max-width: 439px;
109
color: $black;
1110
font-size: 16px;
1211
line-height: 26px;
12+
13+
.content-container {
14+
15+
p {
16+
padding: 24px;
17+
}
18+
}
1319
}
1420

1521
.btn {

0 commit comments

Comments
 (0)