From ae606a1db013b1519ab8f065ce166088b39063a7 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 13 Feb 2023 12:19:13 -0600 Subject: [PATCH] StatusReactionWrapper: switch to our Portal component --- app/soapbox/components/status-reaction-wrapper.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/soapbox/components/status-reaction-wrapper.tsx b/app/soapbox/components/status-reaction-wrapper.tsx index c2ce020f9..95323f24d 100644 --- a/app/soapbox/components/status-reaction-wrapper.tsx +++ b/app/soapbox/components/status-reaction-wrapper.tsx @@ -1,9 +1,8 @@ -import { Portal } from '@reach/portal'; import React, { useState, useEffect, useRef } from 'react'; import { simpleEmojiReact } from 'soapbox/actions/emoji-reacts'; import { openModal } from 'soapbox/actions/modals'; -import { EmojiSelector } from 'soapbox/components/ui'; +import { EmojiSelector, Portal } from 'soapbox/components/ui'; import { useAppDispatch, useAppSelector, useOwnAccount, useSoapboxConfig } from 'soapbox/hooks'; import { isUserTouching } from 'soapbox/is-mobile'; import { getReactForStatus } from 'soapbox/utils/emoji-reacts';