diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-14 15:55:38 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-14 15:55:38 -0600 |
commit | 9170040acb3c85a11fcf29c832360c0765a1ba58 (patch) | |
tree | 5cb6a3850eaac1dfafb131d7508f0da0ae4150e8 /src/view/com/profile/ProfileHeader.tsx | |
parent | 96dc748733561affb9ee9f9d188b040cf5bb009e (diff) | |
download | voidsky-9170040acb3c85a11fcf29c832360c0765a1ba58.tar.zst |
Update all state on profile change
Diffstat (limited to 'src/view/com/profile/ProfileHeader.tsx')
-rw-r--r-- | src/view/com/profile/ProfileHeader.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/profile/ProfileHeader.tsx b/src/view/com/profile/ProfileHeader.tsx index b7440d313..73ddddde9 100644 --- a/src/view/com/profile/ProfileHeader.tsx +++ b/src/view/com/profile/ProfileHeader.tsx @@ -59,7 +59,7 @@ export const ProfileHeader = observer(function ProfileHeader({ ) } const onPressEditProfile = () => { - store.shell.openModal(new EditProfileModel(view)) + store.shell.openModal(new EditProfileModel(view, onRefreshAll)) } const onPressFollowers = () => { store.nav.navigate(`/profile/${view.handle}/followers`) |