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

prod release #7

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix dependencies after repo renaming
  • Loading branch information
ThomasKranitsas committed Apr 20, 2022
commit 16d0bb4030586fe9dbd5171c27248a30b6949f49
2 changes: 1 addition & 1 deletion src/hoc/withAuthentication/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
import React, { useEffect } from "react";
import _ from "lodash";
import { getAuthUserTokens, login } from "@topcoder/micro-frontends-navbar-app";
import { getAuthUserTokens, login } from "@topcoder/mfe-header";
import LoadingIndicator from "../../components/LoadingIndicator";
import {
authUserSuccess,
Expand Down
2 changes: 1 addition & 1 deletion src/root.component.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useEffect } from "react";
import { Provider } from "react-redux";
import { Router } from "@reach/router";
import ReduxToastr from "react-redux-toastr";
import { setAppMenu } from "@topcoder/micro-frontends-navbar-app";
import { setAppMenu } from "@topcoder/mfe-header";
import { appMenu } from "./constants";
import Home from "./routes/Home";
import MemberVisibility from "./routes/MemberVisibility/All";
Expand Down
2 changes: 1 addition & 1 deletion src/services/requestInterceptor.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import axios from "axios";
import _ from "lodash";
import { getAuthUserTokens } from "@topcoder/micro-frontends-navbar-app";
import { getAuthUserTokens } from "@topcoder/mfe-header";

export const axiosInstance = axios.create({
headers: {
Expand Down