Skip to content

Commit 1e137c6

Browse files
committed
fix lint error
1 parent fe53980 commit 1e137c6

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

automated-smoke-test/config/automation-config-dev.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"businessUrl": "https://community-app.topcoder-dev.com/",
55
"switchToBusinessUrl": "https://www.topcoder.com/",
66
"loginUrl": "https://auth.topcoder-dev.com/",
7-
"redirectLoginUrl": "https://accounts-aucommunity-app.topcoder-dev.com/?retUrl=http://www.topcoder.com/",
7+
"redirectLoginUrl": "https://accounts-auth0.topcoder-dev.com/?retUrl=http://www.topcoder.com/",
88
"homePageUrl": "https://community-app.topcoder-dev.com/",
99
"splashPageUrl": "https://community-app.topcoder-dev.com/splash/",
10-
"logoutUrl": "https://community-app.topcoder-dev.com/logout",
10+
"logoutUrl": "https://topcoder-dev.com/logout",
1111
"toolsUrl": "https://community-app.topcoder-dev.com/settings/tools",
1212
"accountUrl": "https://community-app.topcoder-dev.com/settings/account",
1313
"profileUrl": "https://community-app.topcoder-dev.com/settings/profile",

automated-smoke-test/config/automation-config-local.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"logoRedirectionUrl": "http://localhost:3000/",
44
"businessUrl": "http://localhost:3000/",
55
"switchToBusinessUrl": "http://localhost:3000/",
6-
"loginUrl": "https://auth.topcoder.com/",
6+
"loginUrl": "http://localhost:5000",
77
"redirectLoginUrl": "http://localhost:5000/?retUrl=http://localhost:3000",
88
"homePageUrl": "http://localhost:3000/",
99
"splashPageUrl": "http://localhost:3000/splash/",
10-
"logoutUrl": "http://localhost:3000/logout",
10+
"logoutUrl": "https://topcoder.com/logout",
1111
"toolsUrl": "http://localhost:3000/settings/tools",
1212
"accountUrl": "http://localhost:3000/settings/account",
1313
"profileUrl": "http://localhost:3000/settings/profile",

src/shared/utils/challenge-listing/buckets.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -195,18 +195,18 @@ export function sortChangedBucket(sorts, prevSorts) {
195195

196196
export function isFilterEmpty(filter) {
197197
return _.isEqual(filter.tracks, {
198-
Dev: true,
199-
Des: true,
200-
DS: true,
201-
QA: true,
202-
})
203-
&& !filter.name.length
204-
&& !filter.tags.length
205-
&& !filter.types.length
206-
&& !filter.groups.length
207-
&& !filter.events.length
208-
&& !filter.endDateStart
209-
&& !filter.startDateEnd
198+
Dev: true,
199+
Des: true,
200+
DS: true,
201+
QA: true,
202+
})
203+
&& !filter.name.length
204+
&& !filter.tags.length
205+
&& !filter.types.length
206+
&& !filter.groups.length
207+
&& !filter.events.length
208+
&& !filter.endDateStart
209+
&& !filter.startDateEnd;
210210
}
211211

212212
export default undefined;

0 commit comments

Comments
 (0)