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

Commit c0ec1b3

Browse files
Merge pull request #18 from topcoder-platform/challenge-listing-part-1
Challenge listing part 1
2 parents 1a3b5f7 + 26f214c commit c0ec1b3

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.circleci/config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ workflows:
7474
branches:
7575
only:
7676
- dev
77+
- challenge-listing-part-1
7778

7879
# Production builds are exectuted only on tagged commits to the
7980
# master branch.

src/constants/apps.js

+12
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import appDocumentationIcon from "../assets/images/learn.svg";
55
import appTaasIcon from "../assets/images/integrations.svg";
66
import myteamsIcon from "../assets/images/my-teams.svg";
77
import myteamsGreenIcon from "../assets/images/my-teams-green.svg";
8+
import earnIcon from "../assets/images/earn.svg";
89

910
/**
1011
* Micro-app categories
@@ -33,5 +34,16 @@ export const APP_CATEGORIES = [
3334
menu: []
3435
}
3536
]
37+
},
38+
{
39+
category: "Do",
40+
apps: [
41+
{
42+
title: "Earn",
43+
icon: earnIcon,
44+
path: "/earn",
45+
menu: [],
46+
}
47+
]
3648
}
3749
];

0 commit comments

Comments
 (0)