diff --git a/components/home/RelationshipView.tsx b/components/home/RelationshipView.tsx index 306f3b0..97648c5 100644 --- a/components/home/RelationshipView.tsx +++ b/components/home/RelationshipView.tsx @@ -150,7 +150,7 @@ const RelationshipView: React.FC = ({ pfpUrl }) => { = ({ pfpUrl }) => { = ({ pfpUrl }) => { {user && ( @@ -232,7 +232,7 @@ const RelationshipView: React.FC = ({ pfpUrl }) => { {status.partner && ( diff --git a/components/home/UserInfo.tsx b/components/home/UserInfo.tsx index c2053fc..59192da 100644 --- a/components/home/UserInfo.tsx +++ b/components/home/UserInfo.tsx @@ -19,6 +19,7 @@ const UserInfo: React.FC = ({ onPfpUpdate }) => { try { const user: User = await getUser() as User; setUser(user); + console.log(`${process.env.EXPO_PUBLIC_API_URL}${user.pfpUrl}`); if (user.pfpUrl) onPfpUpdate(user.pfpUrl); } catch (error) { @@ -72,7 +73,7 @@ const UserInfo: React.FC = ({ onPfpUpdate }) => { @@ -114,5 +115,3 @@ const styles = StyleSheet.create({ marginBottom: 20, }, }); - -