diff --git a/app/components/PageTitle.js b/app/components/PageTitle.js index 631f1bcb5..d662bfa90 100644 --- a/app/components/PageTitle.js +++ b/app/components/PageTitle.js @@ -1,17 +1,15 @@ // @flow import * as React from "react"; import { Helmet } from "react-helmet"; -import PoliciesStore from "stores/PoliciesStore"; import AuthStore from "stores/AuthStore"; type Props = { title: string, favicon?: string, - policies: PoliciesStore, auth: AuthStore, }; -const { policies, auth } = this.props; +const { auth } = this.props; const { team } = auth; const PageTitle = ({ title, favicon }: Props) => (