File tree 4 files changed +12
-1
lines changed
__tests__/shared/__snapshots__
4 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -238,6 +238,7 @@ workflows:
238
238
filters :
239
239
branches :
240
240
only :
241
+ - hot-fix-ad-code
241
242
- feature-contentful
242
243
# This is alternate dev env for parallel testing
243
244
- " build-qa " :
Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ exports[`Snapshot match 1`] = `
19
19
href = " /challenges/manifest.json"
20
20
rel = " manifest"
21
21
/>
22
+ <script
23
+ async = { true }
24
+ src = " https://43d132d5dbff47c59d9d53ad448f93c2.js.ubembed.com"
25
+ />
22
26
</HelmetWrapper >
23
27
<withRouter(Connect(Routes)) />
24
28
<Connect(ErrorMessageContainer) />
@@ -53,6 +57,10 @@ exports[`Snapshot match 2`] = `
53
57
href = " /challenges/manifest.json"
54
58
rel = " manifest"
55
59
/>
60
+ <script
61
+ async = { true }
62
+ src = " https://43d132d5dbff47c59d9d53ad448f93c2.js.ubembed.com"
63
+ />
56
64
</HelmetWrapper >
57
65
<withRouter(Connect(Routes)) />
58
66
<Connect(ErrorMessageContainer) />
Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ module.exports = {
160
160
COMMUNITY_API : 'http://localhost:8000' ,
161
161
COMMUNITY_APP_GITHUB_ISSUES : 'https://github.com/topcoder-platform/community-app/issues' ,
162
162
EMAIL_VERIFY_URL : 'http://www.topcoder-dev.com/settings/account/changeEmail' ,
163
+ ABANDONMENT_EMBED : 'https://43d132d5dbff47c59d9d53ad448f93c2.js.ubembed.com' ,
163
164
} ,
164
165
165
166
/* Information about Topcoder user groups can be cached in various places.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import Routes from 'routes';
11
11
import ErrorMessage from 'containers/ErrorMessage' ;
12
12
import ErrorIcons from 'containers/ErrorIcons' ;
13
13
14
- import { DevTools , isomorphy } from 'topcoder-react-utils' ;
14
+ import { DevTools , isomorphy , config } from 'topcoder-react-utils' ;
15
15
16
16
import ExtendedReduxToastr from 'containers/toastr' ;
17
17
@@ -37,6 +37,7 @@ export default function App() {
37
37
< Helmet htmlAttributes = { { lang : 'en' } } >
38
38
< meta name = "theme-color" content = "#FFFFFF" />
39
39
< link rel = "manifest" href = "/challenges/manifest.json" />
40
+ < script src = { config . URL . ABANDONMENT_EMBED } async />
40
41
</ Helmet >
41
42
< Routes />
42
43
< ErrorMessage />
You can’t perform that action at this time.
0 commit comments