diff options
author | Eric Bailey <git@esb.lol> | 2023-11-14 19:45:38 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-14 17:45:38 -0800 |
commit | 7d5e01f4330a1227b877dddc7368a50cfef68be0 (patch) | |
tree | 631b9802b3b9147ae707b1138dea257ec8a7ea8c /src | |
parent | e08d06f263a3db1615cf6a1462c4fdc9be33f64a (diff) | |
download | voidsky-7d5e01f4330a1227b877dddc7368a50cfef68be0.tar.zst |
Fix profile list (#1907)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/ProfileList.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/screens/ProfileList.tsx b/src/view/screens/ProfileList.tsx index 594f4907d..ec6c7f79c 100644 --- a/src/view/screens/ProfileList.tsx +++ b/src/view/screens/ProfileList.tsx @@ -90,7 +90,7 @@ export const ProfileListScreen = withAuthRequired( } return resolvedUri && list ? ( - <ProfileListScreenLoaded {...props} uri={resolvedUri} list={list} /> + <ProfileListScreenLoaded {...props} uri={resolvedUri.uri} list={list} /> ) : ( <CenteredView> <View style={s.p20}> |