about summary refs log tree commit diff
path: root/src/components/dms
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-04-25 00:15:46 +0300
committerGitHub <noreply@github.com>2025-04-24 16:15:46 -0500
commit278a54850b666c55f03469ebbe7415e4ccb7be41 (patch)
treee1e96c2930ac32bac9568e6f66536f966102c972 /src/components/dms
parentb6a6b1bab4683ea9e9dcdcc1b10665246b8f8662 (diff)
downloadvoidsky-278a54850b666c55f03469ebbe7415e4ccb7be41.tar.zst
Keep all radix dependencies aligned by using single package (#8219)
* keep all radix deps aligned by using single package

* import directly from `radix-ui` or `radix-ui/internal`

* prevent radix leaking into native build
Diffstat (limited to 'src/components/dms')
-rw-r--r--src/components/dms/EmojiReactionPicker.web.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/dms/EmojiReactionPicker.web.tsx b/src/components/dms/EmojiReactionPicker.web.tsx
index d9e1c87f7..cdd3ce414 100644
--- a/src/components/dms/EmojiReactionPicker.web.tsx
+++ b/src/components/dms/EmojiReactionPicker.web.tsx
@@ -4,10 +4,10 @@ import {type ChatBskyConvoDefs} from '@atproto/api'
 import EmojiPicker from '@emoji-mart/react'
 import {msg} from '@lingui/macro'
 import {useLingui} from '@lingui/react'
-import * as DropdownMenu from '@radix-ui/react-dropdown-menu'
+import {DropdownMenu} from 'radix-ui'
 
 import {useSession} from '#/state/session'
-import {type Emoji} from '#/view/com/composer/text-input/web/EmojiPicker.web'
+import {type Emoji} from '#/view/com/composer/text-input/web/EmojiPicker'
 import {useWebPreloadEmoji} from '#/view/com/composer/text-input/web/useWebPreloadEmoji'
 import {atoms as a, flatten, useTheme} from '#/alf'
 import {DotGrid_Stroke2_Corner0_Rounded as DotGridIcon} from '#/components/icons/DotGrid'