diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-11-13 13:29:33 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-13 13:29:33 -0800 |
commit | a01463788d5e38ffca81fd0d50886838b7a3baba (patch) | |
tree | e7e27ca844515e4d9ce404e93dbcca926dea2c5c /src/state/modals | |
parent | 82177613635c0f10f0af5be63db4b15131ccc89f (diff) | |
download | voidsky-a01463788d5e38ffca81fd0d50886838b7a3baba.tar.zst |
More profile refactor updates (#1886)
* Update the profile avatar lightbox * Update profile editor * Add dynamic likes tab * Add dynamic feeds and lists tabs * Implement lists listing on profiles
Diffstat (limited to 'src/state/modals')
-rw-r--r-- | src/state/modals/index.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/state/modals/index.tsx b/src/state/modals/index.tsx index 6c63d9fc1..57f486630 100644 --- a/src/state/modals/index.tsx +++ b/src/state/modals/index.tsx @@ -3,7 +3,6 @@ import {AppBskyActorDefs, AppBskyGraphDefs, ModerationUI} from '@atproto/api' import {StyleProp, ViewStyle, DeviceEventEmitter} from 'react-native' import {Image as RNImage} from 'react-native-image-crop-picker' -import {ProfileModel} from '#/state/models/content/profile' import {ImageModel} from '#/state/models/media/image' import {GalleryModel} from '#/state/models/media/gallery' @@ -20,7 +19,7 @@ export interface ConfirmModal { export interface EditProfileModal { name: 'edit-profile' - profileView: ProfileModel + profile: AppBskyActorDefs.ProfileViewDetailed onUpdate?: () => void } |