From c8269ca1341d4177ad4a2fc6cbf4cfd25605892a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matheus=20Bregu=C3=AAz?= Date: Mon, 29 Jun 2020 17:06:47 -0300 Subject: [PATCH] Remove Polices --- app/components/PageTitle.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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) => (