fix(web): 🐛 define url as optional in LinkButton

This commit is contained in:
Collin M. Barrett 2021-01-31 15:14:09 -06:00
parent a6de4ec62d
commit 132d374d77

View file

@ -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;