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

Commit b024278

Browse files
[PROD Release] Gigs Detail and Apply Integration (#208)
* output from gigs-listing UI challenge * ci:deploying list * ci:redeploying * expend by default * restore redirection * clean up * Hot fix disable gigs (#193) * remove path * restore url * directo to gigs * Hot fix disable gigs (#194) * remove path * restore url * directo to gigs * hot-fix * Code clean up (#195) * remove path * restore url * directo to gigs * hot-fix * clean up * Earn App - Enable Gigs Listing Link (#199) * restore gigs-listing * restore ci * fix: gigs-link (#201) * [Dev merge] Gigs apply integration (#207) * output from challenge:30215305 * final issue resolve * ci:base branch * output from challenge:30217172 * reset ci
1 parent a139e74 commit b024278

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

Diff for: src/App.jsx

+10
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,16 @@ const App = () => {
4545
System.import("@topcoder/micro-frontends-challenges-app")
4646
}
4747
/>
48+
<Parcel
49+
path="/earn/gigs/:externalId/apply"
50+
view="gig-apply"
51+
config={() => System.import("@topcoder/micro-frontends-gigs-app")}
52+
/>
53+
<Parcel
54+
path="/earn/gigs/:externalId"
55+
view="gig-details"
56+
config={() => System.import("@topcoder/micro-frontends-gigs-app")}
57+
/>
4858
<Parcel
4959
path="/earn/gigs"
5060
view="gigs"

Diff for: src/components/Menu/index.jsx

-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ const Menu = ({ menu, selected, onSelect, isLoggedIn, onUpdateMenu }) => {
3434

3535
const onSelectMenuItem = (name, path) => {
3636
selectionRef.current.select(name);
37-
// if (name == "Gigs") {
38-
// window.location.href = `${process.env.URL.BASE}/gigs`;
39-
// }
4037
if (path) {
4138
navigate(path);
4239
}

0 commit comments

Comments
 (0)