material-tailwind icon indicating copy to clipboard operation
material-tailwind copied to clipboard

`Tooltip` does not work in a `PopoverHandler`

Open Remscar opened this issue 11 months ago • 0 comments

<Popover placement="bottom-start">
          <PopoverHandler>
            <Tooltip content="Filter content">
              <Button className="p-2 flex items-center gap-2 border-solid" variant="outlined">
                Filters
              </Button>
            </Tooltip>
          </PopoverHandler>
          <PopoverContent className="w-72">
            <Typography>Filter options</Typography>
          </PopoverContent>
</Popover>

The following code snippet causes the popover handler not to work.

Remscar avatar Mar 20 '24 18:03 Remscar