Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 2b7adcd

Browse files
change title separaetly
1 parent cacb7b1 commit 2b7adcd

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ workflows:
7676
filters:
7777
branches:
7878
only:
79-
- dev
79+
- gigs-filter
8080

8181
# Production builds are exectuted only on tagged commits to the
8282
# master branch.

src/App.jsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,11 @@ const App = () => {
5454

5555
useEffect(() => {
5656
store.dispatch(actions.lookup.checkIsLoggedIn());
57-
document.title =
58-
"Welcome to the Topcoder Platform. Get started by opening an app in the tool switcher on the top right corner.";
5957
}, []);
6058

6159
useEffect(() => {
6260
if (location.pathname === "/earn/find/challenges") {
61+
document.title = "Listings-Earn-Topcoder";
6362
if (!location.search) {
6463
store.dispatch(
6564
actions.challenges.getChallenges(initialChallengeFilter)
@@ -88,6 +87,8 @@ const App = () => {
8887

8988
useEffect(() => {
9089
if (location.pathname === "/earn/my-gigs" && isLoggedIn) {
90+
document.title =
91+
"Welcome to the Topcoder Platform. Get started by opening an app in the tool switcher on the top right corner";
9192
if (!location.search) {
9293
store.dispatch(actions.filter.updateGigFilter(initialGigFilter));
9394
const cachedGigs = store.getState().myGigs[initialGigFilter.status];

0 commit comments

Comments
 (0)