This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ workflows:
76
76
filters :
77
77
branches :
78
78
only :
79
- - dev
79
+ - gigs-filter
80
80
81
81
# Production builds are exectuted only on tagged commits to the
82
82
# master branch.
Original file line number Diff line number Diff line change @@ -54,12 +54,11 @@ const App = () => {
54
54
55
55
useEffect ( ( ) => {
56
56
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." ;
59
57
} , [ ] ) ;
60
58
61
59
useEffect ( ( ) => {
62
60
if ( location . pathname === "/earn/find/challenges" ) {
61
+ document . title = "Listings-Earn-Topcoder" ;
63
62
if ( ! location . search ) {
64
63
store . dispatch (
65
64
actions . challenges . getChallenges ( initialChallengeFilter )
@@ -88,6 +87,8 @@ const App = () => {
88
87
89
88
useEffect ( ( ) => {
90
89
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" ;
91
92
if ( ! location . search ) {
92
93
store . dispatch ( actions . filter . updateGigFilter ( initialGigFilter ) ) ;
93
94
const cachedGigs = store . getState ( ) . myGigs [ initialGigFilter . status ] ;
You can’t perform that action at this time.
0 commit comments