From 158e8a1aaf0a71c14a3fcc5bde73b4f466a68071 Mon Sep 17 00:00:00 2001 From: Thiago Brezinski Date: Fri, 29 Sep 2023 08:59:50 +0100 Subject: [PATCH] chore: add proptypes comments --- src/components/Tooltip/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Tooltip/index.js b/src/components/Tooltip/index.js index e0cd658b45c3..2e6789ec73f6 100644 --- a/src/components/Tooltip/index.js +++ b/src/components/Tooltip/index.js @@ -6,7 +6,7 @@ import BaseTooltip from './BaseTooltip'; const propTypes = { ...tooltipPropTypes, - /** Whether the actual UserDetailsTooltip should be rendered. If false, it's just going to return the children */ + /** Whether the actual Tooltip should be rendered. If false, it's just going to return the children */ shouldRender: PropTypes.bool, };