From 94b8b42c40d28d0dd4fbadada948089122ed067e Mon Sep 17 00:00:00 2001 From: Rohan-cp Date: Thu, 25 Apr 2024 20:31:08 -0400 Subject: [PATCH] base --- .../components/ProfilePicture/ProfilePicture.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/apps/mobile/src/components/ProfilePicture/ProfilePicture.tsx b/apps/mobile/src/components/ProfilePicture/ProfilePicture.tsx index 094e2b448..94c8138e6 100644 --- a/apps/mobile/src/components/ProfilePicture/ProfilePicture.tsx +++ b/apps/mobile/src/components/ProfilePicture/ProfilePicture.tsx @@ -95,6 +95,19 @@ export function ProfilePicture({ userRef, style, ...rest }: ProfilePictureProps) /> ); + } else if (token) { + return ( + + + + ); } else { return fallbackProfilePicture; }