how to hide material Ui tooltip if the title prop is empty string code example
Example: Conditionally activate Material UI tooltip?
<Tooltip title={warningText == null ? "" : warningText}>
<Button>Do action</Button>
</Tooltip>
<Tooltip title={warningText == null ? "" : warningText}>
<Button>Do action</Button>
</Tooltip>