From 83429793ce0a38172a3add8dfc416ea9cb0a85fa Mon Sep 17 00:00:00 2001 From: Zack Stickles Date: Tue, 12 May 2020 11:47:53 -0700 Subject: [PATCH] chore: Allowing links to not need a URL --- src/types.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.js b/src/types.js index 602eea517..8ebf31f8d 100644 --- a/src/types.js +++ b/src/types.js @@ -4,7 +4,7 @@ import PropTypes from 'prop-types'; // it is not very performant. export const link = PropTypes.shape({ displayName: PropTypes.string.isRequired, - url: PropTypes.string.isRequired, + url: PropTypes.string, active: PropTypes.bool, children: PropTypes.array, });