diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-04-25 00:15:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-24 16:15:46 -0500 |
commit | 278a54850b666c55f03469ebbe7415e4ccb7be41 (patch) | |
tree | e1e96c2930ac32bac9568e6f66536f966102c972 /src/state/shell | |
parent | b6a6b1bab4683ea9e9dcdcc1b10665246b8f8662 (diff) | |
download | voidsky-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/state/shell')
-rw-r--r-- | src/state/shell/composer/index.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/state/shell/composer/index.tsx b/src/state/shell/composer/index.tsx index 33634c047..b425873fc 100644 --- a/src/state/shell/composer/index.tsx +++ b/src/state/shell/composer/index.tsx @@ -1,8 +1,8 @@ import React from 'react' import { - AppBskyActorDefs, - AppBskyFeedDefs, - ModerationDecision, + type AppBskyActorDefs, + type AppBskyFeedDefs, + type ModerationDecision, } from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -12,7 +12,7 @@ import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' import {postUriToRelativePath, toBskyAppUrl} from '#/lib/strings/url-helpers' import {purgeTemporaryImageFiles} from '#/state/gallery' import {precacheResolveLinkQuery} from '#/state/queries/resolve-link' -import type {EmojiPickerPosition} from '#/view/com/composer/text-input/web/EmojiPicker.web' +import {type EmojiPickerPosition} from '#/view/com/composer/text-input/web/EmojiPicker' import * as Toast from '#/view/com/util/Toast' export interface ComposerOptsPostRef { |