Skip to content

Commit 837e740

Browse files
committed
Merge branch 'universal_nav' into marathon_match_submission_download
2 parents 4d359da + 64b88d3 commit 837e740

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

src/shared/components/TopcoderFooter/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ function TopcoderFooter() {
3939
if (footerInitialized.current) {
4040
return;
4141
}
42+
footerRef.current.id = footerElId.current;
4243

4344
footerInitialized.current = true;
4445
counter += 1;

src/shared/containers/EDU/styles/home.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
flex: 1;
66
flex-direction: column;
77
width: 100%;
8+
overflow: hidden;
89

910
.bannerContainer {
1011
background-image: linear-gradient(98.81deg, #8b41b0 0%, #ef476f 100%);

src/shared/containers/TopcoderHeader/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ const TopcoderHeader = ({ auth }) => {
5858
if (uniNavInitialized.current) {
5959
return;
6060
}
61+
headerRef.current.id = headerElId.current;
6162

6263
uniNavInitialized.current = true;
6364
counter += 1;

src/shared/utils/url.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ export const getSubPageConfiguration = () => {
177177
toolName = 'Gigs';
178178
toolRoot = '/gigs';
179179
loginRedirect = '/gigs';
180-
type = 'marketing';
181-
fullFooter = true;
180+
type = 'tool';
181+
fullFooter = false;
182182
}
183183

184184
if (url.includes('/thrive')) {
@@ -190,11 +190,11 @@ export const getSubPageConfiguration = () => {
190190
}
191191

192192
if (url.includes('/community/arena')) {
193-
toolName = 'SRMs (Arena)';
193+
toolName = 'Single Round Matches (Arena)';
194194
toolRoot = '/community/arena';
195195
loginRedirect = '/community/arena';
196-
type = 'marketing';
197-
fullFooter = true;
196+
type = 'tool';
197+
fullFooter = false;
198198
}
199199

200200
if (url.includes('/challenges')) {

0 commit comments

Comments
 (0)