From 132d374d77ca0db69a5df1e201092246e1775681 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sun, 31 Jan 2021 15:14:09 -0600 Subject: [PATCH] =?UTF-8?q?fix(web):=20=F0=9F=90=9B=20define=20url=20as=20?= =?UTF-8?q?optional=20in=20LinkButton?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/LinkButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/LinkButton.tsx b/web/src/components/LinkButton.tsx index 99a7c701d..3cc6803d4 100644 --- a/web/src/components/LinkButton.tsx +++ b/web/src/components/LinkButton.tsx @@ -3,7 +3,7 @@ import { ButtonType } from "antd/lib/button"; import React from "react"; interface Props { - url: string; + url?: string; text: string; title?: string; type?: ButtonType;