diff options
Diffstat (limited to 'src/components/profile/Avatar.tsx')
-rw-r--r-- | src/components/profile/Avatar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/profile/Avatar.tsx b/src/components/profile/Avatar.tsx index 903d0d18..d3c53043 100644 --- a/src/components/profile/Avatar.tsx +++ b/src/components/profile/Avatar.tsx @@ -7,7 +7,7 @@ import {ScreenType} from '../../types'; const PROFILE_DIM = 100; interface AvatarProps { style: object; - userXId: string; + userXId: string | undefined; screenType: ScreenType; } const Avatar: React.FC<AvatarProps> = ({style, screenType, userXId}) => { |