Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinX8 committed Feb 18, 2022
1 parent 1e3d317 commit 40db783
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/layout/partials/FooterNav.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import React, { useContext } from "react";
import classNames from "classnames";
import { Link } from "react-router-dom";
import { ChangeLogContext, ShowBraveContext } from "../../../App";
import { ManagerContext, ShowBraveContext } from "../../../App";
import { SiBrave, SiAdguard } from "react-icons/si";
import { ADGUARD, BRAVE } from "../../../constants/links";

const FooterNav = ({ className, ...props }) => {
const classes = classNames("footer-nav", className);

const vancedManagerAPKUrl = useContext(ChangeLogContext)?.manager?.url;
const vancedManagerAPKUrl = useContext(ManagerContext)?.assets[0]?.browser_download_url;
const showBrave = useContext(ShowBraveContext);

return (
Expand Down

0 comments on commit 40db783

Please sign in to comment.