diff --git a/.circleci/config.yml b/.circleci/config.yml index 51f6373..4a17308 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -75,6 +75,7 @@ workflows: only: - dev - challenge-listing-part-1 + - feat/profile-app # Production builds are exectuted only on tagged commits to the # master branch. diff --git a/.gitignore b/.gitignore index 16916cf..50cc045 100644 --- a/.gitignore +++ b/.gitignore @@ -105,3 +105,6 @@ dist # VS Code settings .vscode/ + +# Webstorm setttings +.idea/ diff --git a/config/dev.js b/config/dev.js index c0320e9..00153e8 100644 --- a/config/dev.js +++ b/config/dev.js @@ -9,6 +9,7 @@ module.exports = { }, API: { V3: "https://api.topcoder-dev.com/v3", + V5: "https://api.topcoder-dev.com/v5", }, REAUTH_OFFSET: 55, // seconds }; diff --git a/src/components/AllAppsMenu/index.jsx b/src/components/AllAppsMenu/index.jsx index 4a2cf1a..a1617f2 100644 --- a/src/components/AllAppsMenu/index.jsx +++ b/src/components/AllAppsMenu/index.jsx @@ -51,41 +51,43 @@ const AllAppsMenu = () => {
SWITCH TOOLS
diff --git a/src/components/UserMenu/index.jsx b/src/components/UserMenu/index.jsx index 8a0f443..6a72edb 100644 --- a/src/components/UserMenu/index.jsx +++ b/src/components/UserMenu/index.jsx @@ -4,6 +4,7 @@ * Shows logged-in user with user menu with options like log-out. */ import React, { useState, useCallback, Fragment } from "react"; +import { Link } from "@reach/router"; import Avatar from "../Avatar"; import cn from "classnames"; import OutsideClickHandler from "react-outside-click-handler"; @@ -62,6 +63,11 @@ const UserMenu = ({ profile }) => {