about summary refs log tree commit diff
path: root/src/state/modals
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-11-13 13:29:33 -0800
committerGitHub <noreply@github.com>2023-11-13 13:29:33 -0800
commita01463788d5e38ffca81fd0d50886838b7a3baba (patch)
treee7e27ca844515e4d9ce404e93dbcca926dea2c5c /src/state/modals
parent82177613635c0f10f0af5be63db4b15131ccc89f (diff)
downloadvoidsky-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.tsx3
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
 }