mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 20:39:08 +01:00
Fix contentText
PropType of InfoTooltip
(#9652)
The `InfoTooltip` component had a `contentText` prop with a PropType of `string` that was being passed a `node` as of #9614. This resulted in a PropType error. The `contentText` prop was being passed directly to `Tooltip` component as the prop `html`, which has a PropType of `node`. A string is a valid `node` type, which is why this worked before. The `contentText` prop is now of type `node`, and the error no longer appears.
This commit is contained in:
parent
7f1bbbc9a3
commit
4197ff7295
@ -36,7 +36,7 @@ export default function InfoTooltip ({
|
||||
}
|
||||
|
||||
InfoTooltip.propTypes = {
|
||||
contentText: PropTypes.string,
|
||||
contentText: PropTypes.node,
|
||||
position: PropTypes.oneOf(['top', 'left', 'bottom', 'right']),
|
||||
wide: PropTypes.bool,
|
||||
containerClassName: PropTypes.string,
|
||||
|
Loading…
Reference in New Issue
Block a user