From f6332bcf96ee63542a8270f43b1c572786d53db6 Mon Sep 17 00:00:00 2001 From: Joe Karow <58997957+JoeKarow@users.noreply.github.com> Date: Tue, 12 Mar 2024 14:49:31 -0400 Subject: [PATCH] fix floating tooltip on mobile --- packages/ui/components/core/Donate/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/components/core/Donate/index.tsx b/packages/ui/components/core/Donate/index.tsx index 8e37a98808..24b70b79ce 100644 --- a/packages/ui/components/core/Donate/index.tsx +++ b/packages/ui/components/core/Donate/index.tsx @@ -75,8 +75,8 @@ export const DonateModal = () => { }, [router.query.isMobileApp]) const isSupportPage = router.pathname === '/support' - const showPopover = !isSupportPage && (opened || !showEmoji) const isMainPage = router.pathname === '/' + const showPopover = !(isSupportPage || isMainPage) && (opened || !showEmoji) return ( <>