From e1397c52dd8a6606edeb88e361b3e30383dcb7b5 Mon Sep 17 00:00:00 2001 From: Arashayo Date: Thu, 27 Jul 2023 13:52:38 +0200 Subject: [PATCH] unnecessary comma --- ui/src/components/TextLink/TextLink.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/TextLink/TextLink.jsx b/ui/src/components/TextLink/TextLink.jsx index 9e4fd50..48154c6 100644 --- a/ui/src/components/TextLink/TextLink.jsx +++ b/ui/src/components/TextLink/TextLink.jsx @@ -28,7 +28,7 @@ TextLink.propTypes = { /** content that will be displayed in the link */ text: PropTypes.string.isRequired, /** boolean that indicates whether the link is external or internal */ - external: PropTypes.bool, + external: PropTypes.bool } export default TextLink