diff options
author | Eric Bailey <git@esb.lol> | 2024-05-17 17:03:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-17 15:03:50 -0700 |
commit | 1cdcb3e6c333b7ad5aa53676163643d7f43d1528 (patch) | |
tree | bd512fbaf93009bd00d60b34a7b97bb4e1469177 /src/screens/Messages/List/index.tsx | |
parent | d02e0884c40adebe3799254395d933205b104a86 (diff) | |
download | voidsky-1cdcb3e6c333b7ad5aa53676163643d7f43d1528.tar.zst |
[🐴] New chat dialog refresh (#4071)
* Checkpoint, header styled, empty * Checkpoint, styles * Show recent follows in initial state, finesse some styles * Add skeleton * Add some limits * Fix autofocus on web, use bottom sheet input on native * Ignore type * Clean up edits * Format * Tweak icon placement * Fix type * use prop for dismissing keyboard --------- Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src/screens/Messages/List/index.tsx')
-rw-r--r-- | src/screens/Messages/List/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Messages/List/index.tsx b/src/screens/Messages/List/index.tsx index e36d1edf2..c198d44c4 100644 --- a/src/screens/Messages/List/index.tsx +++ b/src/screens/Messages/List/index.tsx @@ -18,7 +18,7 @@ import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {DialogControlProps, useDialogControl} from '#/components/Dialog' import {MessagesNUX} from '#/components/dms/MessagesNUX' -import {NewChat} from '#/components/dms/NewChat' +import {NewChat} from '#/components/dms/NewChatDialog' import {useRefreshOnFocus} from '#/components/hooks/useRefreshOnFocus' import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus' import {SettingsSliderVertical_Stroke2_Corner0_Rounded as SettingsSlider} from '#/components/icons/SettingsSlider' |