From 26ad94bc7a565a761d60cf5f59f104d061c11b27 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Mon, 5 Aug 2019 20:44:33 -0500 Subject: [PATCH] rm Text prop for now --- src/FilterLists.Web.V2/src/shared/SubscribeButton.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/FilterLists.Web.V2/src/shared/SubscribeButton.tsx b/src/FilterLists.Web.V2/src/shared/SubscribeButton.tsx index 47c6e8f2d..277dedffd 100644 --- a/src/FilterLists.Web.V2/src/shared/SubscribeButton.tsx +++ b/src/FilterLists.Web.V2/src/shared/SubscribeButton.tsx @@ -5,11 +5,10 @@ import * as React from "react"; interface Props { name: string; viewUrl: string; - text?: string; }; export const SubscribeButton = (props: Props) => props.viewUrl - ? + ? : null; const buildButtonProps = (props: Props) => {