Skip to content

Commit 9717292

Browse files
fix(footer): disable tooltip interactivity checks
Co-Authored-By: gregorywong@box.com <gregorywong@box.com>
1 parent 21b40bb commit 9717292

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/elements/content-picker/Footer.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,15 @@ const Footer = ({
7777
})
7878
) : (
7979
<Toolbar.Root className="bcp-footer-actions">
80-
<Tooltip content={cancelButtonLabel || cancelMessage}>
80+
<Tooltip content={cancelButtonLabel || cancelMessage} __checkInteractivity={false}>
8181
<Button onClick={onCancel} variant="secondary">
8282
{cancelButtonLabel || cancelMessage}
8383
</Button>
8484
</Tooltip>
8585
<Tooltip
8686
content={chooseButtonLabel || chooseMessage}
8787
open={isChooseButtonDisabled ? false : undefined}
88+
__checkInteractivity={false}
8889
>
8990
<Button
9091
disabled={isChooseButtonDisabled}

0 commit comments

Comments
 (0)